Changeset 2891 for trunk/sources/HeuristicLab.Parameters
- Timestamp:
- 03/01/10 04:46:06 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Parameters/3.3
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Parameters/3.3/HeuristicLab.Parameters-3.3.csproj ¶
r2890 r2891 68 68 <None Include="HeuristicLabParametersPlugin.cs.frame" /> 69 69 <Compile Include="ConstrainedValueParameter.cs" /> 70 <Compile Include="ValueParameter.cs" /> 70 71 <Compile Include="LookupParameter.cs" /> 71 72 <Compile Include="OptionalValueParameter.cs" /> -
TabularUnified trunk/sources/HeuristicLab.Parameters/3.3/OptionalValueParameter.cs ¶
r2890 r2891 27 27 namespace HeuristicLab.Parameters { 28 28 /// <summary> 29 /// A parameter whose value is defined it the parameter itself . The value of the parameter can be null, if the parameter is not set.29 /// A parameter whose value is defined it the parameter itself or is null. 30 30 /// </summary> 31 [Item("OptionalValueParameter<T>", "A parameter whose value is defined it the parameter itself . The value of the parameter can be null, if the parameter is not set.")]31 [Item("OptionalValueParameter<T>", "A parameter whose value is defined it the parameter itself or is null.")] 32 32 public class OptionalValueParameter<T> : Parameter, IValueParameter<T> where T : class, IItem { 33 33 private T value;
Note: See TracChangeset
for help on using the changeset viewer.