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.Data/3.3/StringArray.cs

    r16453 r16462  
    2828using HeuristicLab.Common;
    2929using HeuristicLab.Core;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Fossil;
    3131
    3232namespace HeuristicLab.Data {
    3333  [Item("StringArray", "Represents an array of strings.")]
    34   [StorableClass]
     34  [StorableType("E226B187-2D74-4112-A91E-830B0408D1BF")]
    3535  public class StringArray : Item, IEnumerable<string>, IStringConvertibleArray {
    3636    private const int maximumToStringLength = 100;
     
    109109
    110110    [StorableConstructor]
    111     protected StringArray(bool deserializing) : base(deserializing) { }
     111    protected StringArray(StorableConstructorFlag _) : base(_) { }
    112112    protected StringArray(StringArray original, Cloner cloner)
    113113      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.