- Timestamp:
- 03/07/16 10:18:05 (9 years ago)
- Location:
- branches/WebJobManager
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.Clients.OKB/3.3/Administration/ServiceClient/OKBItem.cs
r12012 r13656 30 30 [Item("OKBItem", "Base class for all OKB items.")] 31 31 public partial class OKBItem : IOKBItem { 32 public virtual string ItemName { 32 public virtual string ItemName 33 { 33 34 get { return ItemAttribute.GetName(this.GetType()); } 34 35 } 35 public virtual string ItemDescription { 36 public virtual string ItemDescription 37 { 36 38 get { return ItemAttribute.GetDescription(this.GetType()); } 37 39 } 38 public Version ItemVersion { 40 public Version ItemVersion 41 { 39 42 get { return ItemAttribute.GetVersion(this.GetType()); } 40 43 } 41 public static Image StaticItemImage { 42 get { return HeuristicLab.Common.Resources.VSImageLibrary.Database; } 44 public static Image StaticItemImage 45 { 46 get { return new Bitmap(25, 25); } 43 47 } 44 public virtual Image ItemImage { 45 get { 48 public virtual Image ItemImage 49 { 50 get 51 { 46 52 if (Modified) 47 53 return HeuristicLab.Common.Resources.VSImageLibrary.DatabaseModified; … … 52 58 53 59 private bool modified; 54 public bool Modified { 60 public bool Modified 61 { 55 62 get { return modified; } 56 private set { 63 private set 64 { 57 65 if (value != modified) { 58 66 modified = value;
Note: See TracChangeset
for help on using the changeset viewer.