Changeset 8121 for trunk/sources/HeuristicLab.Parameters
- Timestamp:
- 06/26/12 13:12:48 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Parameters/3.3/OptionalConstrainedValueParameter.cs
r7259 r8121 33 33 [Item("OptionalConstrainedValueParameter", "A parameter whose value has to be chosen from a set of valid values or is null.")] 34 34 [StorableClass] 35 public class OptionalConstrainedValueParameter<T> : Parameter, I ValueParameter<T> where T : class, IItem {35 public class OptionalConstrainedValueParameter<T> : Parameter, IConstrainedValueParameter<T> where T : class, IItem { 36 36 public override Image ItemImage { 37 37 get { … … 40 40 } 41 41 } 42 42 43 43 [Storable] 44 44 private ItemSet<T> validValues; 45 public I temSet<T> ValidValues {45 public IItemSet<T> ValidValues { 46 46 get { return validValues; } 47 47 }
Note: See TracChangeset
for help on using the changeset viewer.