- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Clients.Hive/3.3/HiveTasks/HiveTask.cs
r16453 r16462 29 29 using HeuristicLab.Common; 30 30 using HeuristicLab.Core; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Fossil; 32 32 using HeuristicLab.PluginInfrastructure; 33 33 … … 35 35 36 36 [Item("Hive Task", "Represents a hive task.")] 37 [Storable Class]37 [StorableType("AB546F71-AB78-44AF-9954-1A269D278C56")] 38 38 public class HiveTask : NamedItem, IItemTree<HiveTask>, IDisposable { 39 39 protected static object locker = new object(); … … 170 170 #region Constructors and Cloning 171 171 [StorableConstructor] 172 protected HiveTask( bool deserializing) { }172 protected HiveTask(StorableConstructorFlag _) : base(_) { } 173 173 174 174 public HiveTask() … … 541 541 542 542 [Item("Hive Task", "Represents a hive task.")] 543 [Storable Class]543 [StorableType("F185C6FD-7282-4EE1-9F76-C4DD32C69207")] 544 544 public class HiveTask<T> : HiveTask where T : ItemTask { 545 545 … … 552 552 public HiveTask() : base() { } 553 553 [StorableConstructor] 554 protected HiveTask( bool deserializing) { }554 protected HiveTask(StorableConstructorFlag _) : base(_) { } 555 555 public HiveTask(T itemTask) : base(itemTask, true) { } 556 556 protected HiveTask(HiveTask<T> original, Cloner cloner)
Note: See TracChangeset
for help on using the changeset viewer.