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.Algorithms.Benchmarks/3.3/Benchmark.cs

    r12012 r13656  
    3232  [StorableClass]
    3333  public abstract class Benchmark : IBenchmark {
    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.Event; }
    45     }
    46     public virtual Image ItemImage {
     46
     47    public virtual Image ItemImage
     48    {
    4749      get { return ItemAttribute.GetImage(this.GetType()); }
    4850    }
     
    5052    [Storable]
    5153    private byte[][] chunk;
    52     public byte[][] ChunkData {
     54    public byte[][] ChunkData
     55    {
    5356      get { return chunk; }
    5457      set { chunk = value; }
     
    5760    [Storable]
    5861    private TimeSpan timeLimit;
    59     public TimeSpan TimeLimit {
     62    public TimeSpan TimeLimit
     63    {
    6064      get { return timeLimit; }
    6165      set { timeLimit = value; }
Note: See TracChangeset for help on using the changeset viewer.