- 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.Hive/3.3/ServiceClients/HiveItem.cs
r12012 r13656 29 29 namespace HeuristicLab.Clients.Hive { 30 30 public partial class HiveItem : IHiveItem { 31 public string ItemName { 31 public string ItemName 32 { 32 33 get { return ItemAttribute.GetName(this.GetType()); } 33 34 } 34 public string ItemDescription { 35 public string ItemDescription 36 { 35 37 get { return ItemAttribute.GetDescription(this.GetType()); } 36 38 } 37 public Version ItemVersion { 39 public Version ItemVersion 40 { 38 41 get { return ItemAttribute.GetVersion(this.GetType()); } 39 42 } 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); } 42 46 } 43 public virtual Image ItemImage { 44 get { 47 public virtual Image ItemImage 48 { 49 get 50 { 45 51 if (Modified) 46 52 return HeuristicLab.Common.Resources.VSImageLibrary.DatabaseModified; … … 51 57 52 58 private bool modified; 53 public bool Modified { 59 public bool Modified 60 { 54 61 get { return modified; } 55 internal set { 62 internal set 63 { 56 64 if (value != modified) { 57 65 modified = value;
Note: See TracChangeset
for help on using the changeset viewer.