Free cookie consent management tool by TermsFeed Policy Generator

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

#2582 created branch for Hive Web Job Manager

Location:
branches/WebJobManager
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Clients.Access/3.3/ServiceClients/AccessItem.cs

    r12012 r13656  
    3030  [Item("AccessItem", "Base class for all AccessService items.")]
    3131  public partial class AccessItem : IAccessItem {
    32     public virtual string ItemName {
     32    public virtual string ItemName
     33    {
    3334      get { return ItemAttribute.GetName(this.GetType()); }
    3435    }
    35     public virtual string ItemDescription {
     36    public virtual string ItemDescription
     37    {
    3638      get { return ItemAttribute.GetDescription(this.GetType()); }
    3739    }
    38     public Version ItemVersion {
     40    public Version ItemVersion
     41    {
    3942      get { return ItemAttribute.GetVersion(this.GetType()); }
    4043    }
    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      {
    4649        if (Modified)
    4750          return HeuristicLab.Common.Resources.VSImageLibrary.DatabaseModified;
     
    5255
    5356    private bool modified;
    54     public bool Modified {
     57    public bool Modified
     58    {
    5559      get { return modified; }
    56       private set {
     60      private set
     61      {
    5762        if (value != modified) {
    5863          modified = value;
  • branches/WebJobManager/HeuristicLab.Clients.Access/3.3/ServiceClients/Client.cs

    r12012 r13656  
    2020#endregion
    2121
    22 using System.Drawing;
    2322using HeuristicLab.Common;
    2423using HeuristicLab.Core;
     
    4140    }
    4241
    43     public static new Image StaticItemImage {
    44       get { return HeuristicLab.Common.Resources.VSImageLibrary.MonitorLarge; }
    45     }
     42
    4643
    4744    public Client() { }
  • branches/WebJobManager/HeuristicLab.Clients.Access/3.3/ServiceClients/ClientGroup.cs

    r12012 r13656  
    2020#endregion
    2121
    22 using System.Drawing;
    2322using HeuristicLab.Common;
    2423using HeuristicLab.Core;
     
    3029      : base(original, cloner) { }
    3130
    32     public static new Image StaticItemImage {
    33       get { return HeuristicLab.Common.Resources.VSImageLibrary.NetworkCenterLarge; }
    34     }
     31
    3532
    3633    public ClientGroup() { }
Note: See TracChangeset for help on using the changeset viewer.