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.Core/3.3/Collections/ReadOnlyItemDictionary.cs

    r12012 r13656  
    3333    where TValue : class, IItem {
    3434
    35     public virtual string ItemName {
     35    public virtual string ItemName
     36    {
    3637      get { return ItemAttribute.GetName(this.GetType()); }
    3738    }
    38     public virtual string ItemDescription {
     39    public virtual string ItemDescription
     40    {
    3941      get { return ItemAttribute.GetDescription(this.GetType()); }
    4042    }
    41     public Version ItemVersion {
     43    public Version ItemVersion
     44    {
    4245      get { return ItemAttribute.GetVersion(this.GetType()); }
    4346    }
    44     public static Image StaticItemImage {
    45       get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; }
     47    public static Image StaticItemImage
     48    {
     49      get { return new Bitmap(25, 25); }
    4650    }
    47     public virtual Image ItemImage {
     51    public virtual Image ItemImage
     52    {
    4853      get { return ItemAttribute.GetImage(this.GetType()); }
    4954    }
Note: See TracChangeset for help on using the changeset viewer.