Changeset 8206 for branches/GP-MoveOperators/HeuristicLab.Parameters
- Timestamp:
- 07/03/12 16:46:35 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:mergeinfo changed
/trunk/sources merged: 8084,8088-8090,8092-8100,8102-8113,8115,8117-8132,8134-8146,8148-8156,8158-8160,8163-8170,8173-8176,8178-8190,8192-8205
- Property svn:mergeinfo changed
-
branches/GP-MoveOperators/HeuristicLab.Parameters/3.3/OptionalConstrainedValueParameter.cs
r7259 r8206 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.