- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Optimization/3.3/Results
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Optimization/3.3/Results/Result.cs
r16453 r16462 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Optimization { … … 31 31 /// </summary> 32 32 [Item("Result", "A result which has a name and a data type and holds an IItem.")] 33 [Storable Class]33 [StorableType("219051C0-9D62-4CDE-9BA1-32233C81B678")] 34 34 public sealed class Result : NamedItem, IResult, IStorableContent { 35 35 public string Filename { get; set; } … … 76 76 77 77 [StorableConstructor] 78 private Result( bool deserializing) : base(deserializing) { }78 private Result(StorableConstructorFlag _) : base(_) { } 79 79 private Result(Result original, Cloner cloner) 80 80 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Optimization/3.3/Results/ResultCollection.cs
r16453 r16462 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 26 26 27 27 namespace HeuristicLab.Optimization { 28 [Storable Class]28 [StorableType("959230E3-C51B-4EC0-BDB2-0B0D71F5A6E3")] 29 29 [Item("ResultCollection", "Represents a collection of results.")] 30 30 public class ResultCollection : NamedItemCollection<IResult> { … … 33 33 public ResultCollection(IEnumerable<IResult> collection) : base(collection) { } 34 34 [StorableConstructor] 35 protected ResultCollection( bool deserializing) : base(deserializing) { }35 protected ResultCollection(StorableConstructorFlag _) : base(_) { } 36 36 protected ResultCollection(ResultCollection original, Cloner cloner) 37 37 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Optimization/3.3/Results/ResultParameter.cs
r16453 r16462 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 30 30 namespace HeuristicLab.Optimization { 31 31 [Item("ResultParameter", "A parameter whose value is written to a result collection.")] 32 [Storable Class]32 [StorableType("CF10EF50-82B6-4A98-82C0-3C5ECED48904")] 33 33 public sealed class ResultParameter<T> : LookupParameter<T>, IResultParameter<T> where T : class, IItem { 34 34 public override Image ItemImage { get { return VSImageLibrary.Exception; } } … … 61 61 62 62 [StorableConstructor] 63 private ResultParameter( bool deserializing) : base(deserializing) { }63 private ResultParameter(StorableConstructorFlag _) : base(_) { } 64 64 private ResultParameter(ResultParameter<T> original, Cloner cloner) 65 65 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.