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

    r12012 r13656  
    3232  [Item("ItemCollection", "Represents a collection of items.")]
    3333  public class ItemCollection<T> : ObservableCollection<T>, IItemCollection<T> where T : class, IItem {
    34     public virtual string ItemName {
     34    public virtual string ItemName
     35    {
    3536      get { return ItemAttribute.GetName(this.GetType()); }
    3637    }
    37     public virtual string ItemDescription {
     38    public virtual string ItemDescription
     39    {
    3840      get { return ItemAttribute.GetDescription(this.GetType()); }
    3941    }
    40     public Version ItemVersion {
     42    public Version ItemVersion
     43    {
    4144      get { return ItemAttribute.GetVersion(this.GetType()); }
    4245    }
    43     public static Image StaticItemImage {
    44       get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; }
     46    public static Image StaticItemImage
     47    {
     48      get { return new Bitmap(25, 25); }
    4549    }
    46     public virtual Image ItemImage {
     50    public virtual Image ItemImage
     51    {
    4752      get { return ItemAttribute.GetImage(this.GetType()); }
    4853    }
Note: See TracChangeset for help on using the changeset viewer.