- Timestamp:
- 03/07/16 10:18:05 (9 years ago)
- Location:
- branches/WebJobManager
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.Clients.Access/3.3/ServiceClients/AccessItem.cs
r12012 r13656 30 30 [Item("AccessItem", "Base class for all AccessService items.")] 31 31 public partial class AccessItem : IAccessItem { 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; }43 }44 public virtual Image ItemImage {45 get{44 45 public virtual Image ItemImage 46 { 47 get 48 { 46 49 if (Modified) 47 50 return HeuristicLab.Common.Resources.VSImageLibrary.DatabaseModified; … … 52 55 53 56 private bool modified; 54 public bool Modified { 57 public bool Modified 58 { 55 59 get { return modified; } 56 private set { 60 private set 61 { 57 62 if (value != modified) { 58 63 modified = value; -
branches/WebJobManager/HeuristicLab.Clients.Access/3.3/ServiceClients/Client.cs
r12012 r13656 20 20 #endregion 21 21 22 using System.Drawing;23 22 using HeuristicLab.Common; 24 23 using HeuristicLab.Core; … … 41 40 } 42 41 43 public static new Image StaticItemImage { 44 get { return HeuristicLab.Common.Resources.VSImageLibrary.MonitorLarge; } 45 } 42 46 43 47 44 public Client() { } -
branches/WebJobManager/HeuristicLab.Clients.Access/3.3/ServiceClients/ClientGroup.cs
r12012 r13656 20 20 #endregion 21 21 22 using System.Drawing;23 22 using HeuristicLab.Common; 24 23 using HeuristicLab.Core; … … 30 29 : base(original, cloner) { } 31 30 32 public static new Image StaticItemImage { 33 get { return HeuristicLab.Common.Resources.VSImageLibrary.NetworkCenterLarge; } 34 } 31 35 32 36 33 public ClientGroup() { }
Note: See TracChangeset
for help on using the changeset viewer.