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/ReadOnlyItemArray.cs

    r12012 r13656  
    3030  [Item("ReadOnlyItemArray", "Represents a read-only array of items.")]
    3131  public class ReadOnlyItemArray<T> : ReadOnlyObservableArray<T>, IItemArray<T> where T : class, IItem {
    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.Class; }
     44    public static Image StaticItemImage
     45    {
     46      get { return new Bitmap(25, 25); }
    4347    }
    44     public virtual Image ItemImage {
     48    public virtual Image ItemImage
     49    {
    4550      get { return ItemAttribute.GetImage(this.GetType()); }
    4651    }
Note: See TracChangeset for help on using the changeset viewer.