Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/StateLogItemList.cs @ 5597

Last change on this file since 5597 was 5597, checked in by cneumuel, 13 years ago

#1233

  • extended jobview to show statelog as list with details or as ganttview
  • also a ganttview of all statelogs of all childjobs was implemented
File size: 771 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
5
6namespace HeuristicLab.Clients.Hive.Views {
7  [StorableClass]
8  public class StateLogItemList : ItemList<StateLogItem> {
9
10    [StorableConstructor]
11    protected StateLogItemList(bool deserializing) : base(deserializing) { }
12    public StateLogItemList() : base() { }
13    protected StateLogItemList(StateLogItemList original, Cloner cloner) : base(original, cloner) { }
14    public StateLogItemList(IEnumerable<StateLogItem> collection)
15      : base(collection) {
16    }
17    public override IDeepCloneable Clone(Cloner cloner) {
18      return new StateLogItemList(this, cloner);
19    }
20
21  }
22}
Note: See TracBrowser for help on using the repository browser.