Changeset 2947 for trunk/sources/HeuristicLab.Parameters
- Timestamp:
- 03/06/10 00:26:13 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Parameters/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Parameters/3.3/OptionalValueParameter.cs ¶
r2932 r2947 27 27 namespace HeuristicLab.Parameters { 28 28 /// <summary> 29 /// A parameter whose value is defined i tthe parameter itself or is null.29 /// A parameter whose value is defined in the parameter itself or is null. 30 30 /// </summary> 31 [Item("OptionalValueParameter<T>", "A parameter whose value is defined i tthe parameter itself or is null.")]31 [Item("OptionalValueParameter<T>", "A parameter whose value is defined in the parameter itself or is null.")] 32 32 public class OptionalValueParameter<T> : Parameter, IValueParameter<T> where T : class, IItem { 33 33 private T value; -
TabularUnified trunk/sources/HeuristicLab.Parameters/3.3/ValueLookupParameter.cs ¶
r2932 r2947 27 27 namespace HeuristicLab.Parameters { 28 28 /// <summary> 29 /// A parameter whose value is either defined i tthe parameter itself or is retrieved from the scope.29 /// A parameter whose value is either defined in the parameter itself or is retrieved from the scope. 30 30 /// </summary> 31 [Item("ValueLookupParameter<T>", "A parameter whose value is either defined i tthe parameter itself or is retrieved from or written to a scope.")]31 [Item("ValueLookupParameter<T>", "A parameter whose value is either defined in the parameter itself or is retrieved from or written to a scope.")] 32 32 public class ValueLookupParameter<T> : LookupParameter<T>, IValueLookupParameter<T> where T : class, IItem { 33 33 private T value; -
TabularUnified trunk/sources/HeuristicLab.Parameters/3.3/ValueParameter.cs ¶
r2931 r2947 27 27 namespace HeuristicLab.Parameters { 28 28 /// <summary> 29 /// A parameter whose value is defined i tthe parameter itself.29 /// A parameter whose value is defined in the parameter itself. 30 30 /// </summary> 31 [Item("ValueParameter<T>", "A parameter whose value is defined i tthe parameter itself.")]31 [Item("ValueParameter<T>", "A parameter whose value is defined in the parameter itself.")] 32 32 [EmptyStorableClass] 33 33 public class ValueParameter<T> : OptionalValueParameter<T> where T : class, IItem {
Note: See TracChangeset
for help on using the changeset viewer.