Last change
on this file since 8228 was
6976,
checked in by ascheibe, 13 years ago
|
#1672 integrate the Hive client projects into trunk (Hive Job Manager and Administrator)
|
File size:
735 bytes
|
Rev | Line | |
---|
[6976] | 1 | using System.Collections.Generic;
|
---|
| 2 | using HeuristicLab.Common;
|
---|
| 3 | using HeuristicLab.Core;
|
---|
| 4 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 5 |
|
---|
| 6 | namespace HeuristicLab.Clients.Hive.Views {
|
---|
| 7 | [StorableClass]
|
---|
| 8 | public class StateLogList : ItemList<StateLog> {
|
---|
| 9 |
|
---|
| 10 | [StorableConstructor]
|
---|
| 11 | protected StateLogList(bool deserializing) : base(deserializing) { }
|
---|
| 12 | public StateLogList() : base() { }
|
---|
| 13 | protected StateLogList(StateLogList original, Cloner cloner) : base(original, cloner) { }
|
---|
| 14 | public StateLogList(IEnumerable<StateLog> collection)
|
---|
| 15 | : base(collection) {
|
---|
| 16 | }
|
---|
| 17 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 18 | return new StateLogList(this, cloner);
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | }
|
---|
| 22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.