Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/07/16 10:18:05 (8 years ago)
Author:
ascheibe
Message:

#2582 created branch for Hive Web Job Manager

Location:
branches/WebJobManager
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Clients.Hive/3.3/ServiceClients/HiveItem.cs

    r12012 r13656  
    2929namespace HeuristicLab.Clients.Hive {
    3030  public partial class HiveItem : IHiveItem {
    31     public string ItemName {
     31    public string ItemName
     32    {
    3233      get { return ItemAttribute.GetName(this.GetType()); }
    3334    }
    34     public string ItemDescription {
     35    public string ItemDescription
     36    {
    3537      get { return ItemAttribute.GetDescription(this.GetType()); }
    3638    }
    37     public Version ItemVersion {
     39    public Version ItemVersion
     40    {
    3841      get { return ItemAttribute.GetVersion(this.GetType()); }
    3942    }
    40     public static Image StaticItemImage {
    41       get { return HeuristicLab.Common.Resources.VSImageLibrary.Database; }
     43    public static Image StaticItemImage
     44    {
     45      get { return new Bitmap(25, 25); }
    4246    }
    43     public virtual Image ItemImage {
    44       get {
     47    public virtual Image ItemImage
     48    {
     49      get
     50      {
    4551        if (Modified)
    4652          return HeuristicLab.Common.Resources.VSImageLibrary.DatabaseModified;
     
    5157
    5258    private bool modified;
    53     public bool Modified {
     59    public bool Modified
     60    {
    5461      get { return modified; }
    55       internal set {
     62      internal set
     63      {
    5664        if (value != modified) {
    5765          modified = value;
Note: See TracChangeset for help on using the changeset viewer.