- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Clients.Hive
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Clients.Hive (added) merged: 16452-16454,16462,16480,16529,16539,16553,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Clients.Hive/3.3/HiveTasks/HiveTask.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Common; 30 30 using HeuristicLab.Core; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 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.