Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/10 03:25:21 (14 years ago)
Author:
swagner
Message:

Removed Creatable test attribute (#935).

Location:
trunk/sources/HeuristicLab.Core/3.3
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/OperatorCollection.cs

    r3017 r3160  
    3030namespace HeuristicLab.Core {
    3131  [StorableClass]
    32   [Item("OperatorCollection", "Represents a collection of operators.")]
    33   [Creatable("Test")]
     32  [Creatable("Algorithm Design")]
     33  [Item("Operator Collection", "Represents a collection of operators.")]
    3434  public class OperatorCollection : ItemCollection<IOperator> {
    3535    public OperatorCollection() : base() { }
  • trunk/sources/HeuristicLab.Core/3.3/OperatorGraph.cs

    r3017 r3160  
    3333  /// Represents a graph of operators.
    3434  /// </summary>
    35   [Item("OperatorGraph", "Represents a graph of operators.")]
    36   [Creatable("Algorithms")]
     35  [Item("Operator Graph", "Represents a graph of operators.")]
     36  [Creatable("Algorithm Design")]
    3737  [StorableClass]
    3838  public class OperatorGraph : Item {
  • trunk/sources/HeuristicLab.Core/3.3/OperatorList.cs

    r3017 r3160  
    3131  [StorableClass]
    3232  [Item("OperatorList", "Represents a list of operators.")]
    33   [Creatable("Test")]
    3433  public class OperatorList : ItemList<IOperator> {
    3534    public OperatorList() : base() { }
  • trunk/sources/HeuristicLab.Core/3.3/OperatorSet.cs

    r3017 r3160  
    3131  [StorableClass]
    3232  [Item("OperatorSet", "Represents a set of operators.")]
    33   [Creatable("Test")]
    3433  public class OperatorSet : ItemSet<IOperator> {
    3534    public OperatorSet() : base() { }
  • trunk/sources/HeuristicLab.Core/3.3/ParameterCollection.cs

    r3017 r3160  
    2626  [StorableClass]
    2727  [Item("ParameterCollection", "Represents a collection of parameters.")]
    28   [Creatable("Test")]
    2928  public class ParameterCollection : NamedItemCollection<IParameter> {
    3029    public ParameterCollection() : base() { }
  • trunk/sources/HeuristicLab.Core/3.3/Scope.cs

    r3017 r3160  
    2828  /// </summary>
    2929  [Item("Scope", "A scope which contains variables and sub-scopes.")]
    30   [Creatable("Test")]
    3130  [StorableClass]
    3231  public sealed class Scope : NamedItem, IScope {
  • trunk/sources/HeuristicLab.Core/3.3/ScopeList.cs

    r3017 r3160  
    2727  [StorableClass]
    2828  [Item("ScopeList", "Represents a list of scopes.")]
    29   [Creatable("Test")]
    3029  public sealed class ScopeList : ItemList<IScope> {
    3130    public ScopeList() : base() { }
  • trunk/sources/HeuristicLab.Core/3.3/ValueParameterCollection.cs

    r3017 r3160  
    2626  [StorableClass]
    2727  [Item("ValueParameterCollection", "Represents a collection of value parameters.")]
    28   [Creatable("Test")]
    2928  public class ValueParameterCollection : NamedItemCollection<IValueParameter> {
    3029    public ValueParameterCollection() : base() { }
  • trunk/sources/HeuristicLab.Core/3.3/Variable.cs

    r3017 r3160  
    2929  /// </summary>
    3030  [Item("Variable", "A variable which has a name and holds an IItem.")]
    31   [Creatable("Test")]
    3231  [StorableClass]
    3332  public sealed class Variable : NamedItem, IVariable {
  • trunk/sources/HeuristicLab.Core/3.3/VariableCollection.cs

    r3017 r3160  
    2727  [StorableClass]
    2828  [Item("VariableCollection", "Represents a collection of variables.")]
    29   [Creatable("Test")]
    3029  public sealed class VariableCollection : NamedItemCollection<IVariable> {
    3130    public VariableCollection() : base() { }
Note: See TracChangeset for help on using the changeset viewer.