- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Parameters/3.3/ConstrainedValueParameter.cs
r15584 r17097 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. … … 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Parameters { … … 32 32 /// </summary> 33 33 [Item("ConstrainedValueParameter", "A parameter whose value has to be chosen from a set of valid values.")] 34 [Storable Class]34 [StorableType("A9B43259-2687-4AE8-9803-B58CE01B81EE")] 35 35 public class ConstrainedValueParameter<T> : OptionalConstrainedValueParameter<T> where T : class, IItem { 36 36 public override T Value { … … 43 43 44 44 [StorableConstructor] 45 protected ConstrainedValueParameter( bool deserializing) : base(deserializing) { }45 protected ConstrainedValueParameter(StorableConstructorFlag _) : base(_) { } 46 46 protected ConstrainedValueParameter(ConstrainedValueParameter<T> original, Cloner cloner) : base(original, cloner) { } 47 47 public ConstrainedValueParameter() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.