Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/17/10 02:38:32 (14 years ago)
Author:
swagner
Message:

Implemented reviewers' comments (#863)

  • adapted item names of generic items to reflect the type of their generic parameters
Location:
trunk/sources/HeuristicLab.Parameters/3.3
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters/3.3/ConstrainedValueParameter.cs

    r3376 r3822  
    3131  /// A parameter whose value has to be chosen from a set of valid values.
    3232  /// </summary>
    33   [Item("ConstrainedValueParameter<T>", "A parameter whose value has to be chosen from a set of valid values.")]
     33  [Item("ConstrainedValueParameter", "A parameter whose value has to be chosen from a set of valid values.")]
    3434  [StorableClass]
    3535  public class ConstrainedValueParameter<T> : OptionalConstrainedValueParameter<T> where T : class, IItem {
  • trunk/sources/HeuristicLab.Parameters/3.3/LookupParameter.cs

    r3688 r3822  
    2929  /// A parameter whose value is retrieved from the scope.
    3030  /// </summary>
    31   [Item("LookupParameter<T>", "A parameter whose value is retrieved from or written to a scope.")]
     31  [Item("LookupParameter", "A parameter whose value is retrieved from or written to a scope.")]
    3232  [StorableClass]
    3333  public class LookupParameter<T> : Parameter, ILookupParameter<T> where T : class, IItem {
  • trunk/sources/HeuristicLab.Parameters/3.3/OptionalConstrainedValueParameter.cs

    r3688 r3822  
    3131  /// A parameter whose value has to be chosen from a set of valid values or is null.
    3232  /// </summary>
    33   [Item("OptionalConstrainedValueParameter<T>", "A parameter whose value has to be chosen from a set of valid values or is null.")]
     33  [Item("OptionalConstrainedValueParameter", "A parameter whose value has to be chosen from a set of valid values or is null.")]
    3434  [StorableClass]
    3535  public class OptionalConstrainedValueParameter<T> : Parameter, IValueParameter<T> where T : class, IItem {
  • trunk/sources/HeuristicLab.Parameters/3.3/OptionalValueParameter.cs

    r3688 r3822  
    3030  /// A parameter whose value is defined in the parameter itself or is null.
    3131  /// </summary>
    32   [Item("OptionalValueParameter<T>", "A parameter whose value is defined in the parameter itself or is null.")]
     32  [Item("OptionalValueParameter", "A parameter whose value is defined in the parameter itself or is null.")]
    3333  [StorableClass]
    3434  public class OptionalValueParameter<T> : Parameter, IValueParameter<T> where T : class, IItem {
  • trunk/sources/HeuristicLab.Parameters/3.3/ScopeTreeLookupParameter.cs

    r3740 r3822  
    3131  /// A generic parameter representing instances of type T which are collected from or written to scope tree.
    3232  /// </summary>
    33   [Item("ScopeTreeLookupParameter<T>", "A generic parameter representing instances of type T which are collected from or written to scope tree.")]
     33  [Item("ScopeTreeLookupParameter", "A generic parameter representing instances of type T which are collected from or written to scope tree.")]
    3434  [StorableClass]
    3535  public class ScopeTreeLookupParameter<T> : LookupParameter<ItemArray<T>>, IScopeTreeLookupParameter<T> where T : class, IItem {
  • trunk/sources/HeuristicLab.Parameters/3.3/ValueLookupParameter.cs

    r3688 r3822  
    3030  /// A parameter whose value is either defined in the parameter itself or is retrieved from the scope.
    3131  /// </summary>
    32   [Item("ValueLookupParameter<T>", "A parameter whose value is either defined in the parameter itself or is retrieved from or written to a scope.")]
     32  [Item("ValueLookupParameter", "A parameter whose value is either defined in the parameter itself or is retrieved from or written to a scope.")]
    3333  [StorableClass]
    3434  public class ValueLookupParameter<T> : LookupParameter<T>, IValueLookupParameter<T> where T : class, IItem {
  • trunk/sources/HeuristicLab.Parameters/3.3/ValueParameter.cs

    r3017 r3822  
    2929  /// A parameter whose value is defined in the parameter itself.
    3030  /// </summary>
    31   [Item("ValueParameter<T>", "A parameter whose value is defined in the parameter itself.")]
     31  [Item("ValueParameter", "A parameter whose value is defined in the parameter itself.")]
    3232  [StorableClass]
    3333  public class ValueParameter<T> : OptionalValueParameter<T> where T : class, IItem {
Note: See TracChangeset for help on using the changeset viewer.