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.Analysis/3.3/AlleleFrequencyAnalysis/AlleleFrequency.cs

    r16453 r16462  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Fossil;
    2525
    2626namespace HeuristicLab.Analysis {
     
    2929  /// </summary>
    3030  [Item("AlleleFrequency", "Represents the frequency of an allele.")]
    31   [StorableClass]
     31  [StorableType("9769F3D4-9207-4CDC-B473-8C18301EF418")]
    3232  public class AlleleFrequency : Item {
    3333    private string id;
     
    9191    #region Storing & Cloning
    9292    [StorableConstructor]
    93     protected AlleleFrequency(bool deserializing) : base(deserializing) { }
     93    protected AlleleFrequency(StorableConstructorFlag _) : base(_) { }
    9494    protected AlleleFrequency(AlleleFrequency original, Cloner cloner)
    9595      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.