Changeset 16956 for branches/2457_ExpertSystem/HeuristicLab.Analysis/3.3/AlleleFrequencyAnalysis/Allele.cs
- Timestamp:
- 05/15/19 13:36:51 (6 years ago)
- Location:
- branches/2457_ExpertSystem/HeuristicLab.Analysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2457_ExpertSystem/HeuristicLab.Analysis
- Property svn:mergeinfo changed
-
branches/2457_ExpertSystem/HeuristicLab.Analysis/3.3/AlleleFrequencyAnalysis/Allele.cs
r16075 r16956 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. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Analysis { … … 29 29 /// </summary> 30 30 [Item("Allele", "Represents an allele of a solution which is used for allele analysis.")] 31 [Storable Class]31 [StorableType("27AE2AD2-D4A3-4187-A773-CDA518B8B28A")] 32 32 public class Allele : Item { 33 33 private string id; … … 55 55 #region Storing & Cloning 56 56 [StorableConstructor] 57 protected Allele( bool deserializing) : base(deserializing) { }57 protected Allele(StorableConstructorFlag _) : base(_) { } 58 58 protected Allele(Allele original, Cloner cloner) 59 59 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.