Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Optimization/3.3/RunCollection.cs

    r16453 r16462  
    2828using HeuristicLab.Core;
    2929using HeuristicLab.Data;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Fossil;
    3131
    3232namespace HeuristicLab.Optimization {
    3333  [Item("Run Collection", "Represents a collection of runs.")]
    3434  [Creatable(CreatableAttribute.Categories.TestingAndAnalysis, Priority = 120)]
    35   [StorableClass]
     35  [StorableType("6A9E959B-62DB-4998-BFC6-BF3BAE66BED4")]
    3636  public class RunCollection : ItemCollection<IRun>, IStringConvertibleMatrix, IStorableContent {
    3737    public string Filename { get; set; }
    3838
    3939    [StorableConstructor]
    40     protected RunCollection(bool deserializing)
    41       : base(deserializing) {
     40    protected RunCollection(StorableConstructorFlag _) : base(_) {
    4241      updateOfRunsInProgress = false;
    4342    }
Note: See TracChangeset for help on using the changeset viewer.