Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/14/10 05:31:49 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on operators
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/VariableCreator.cs

    r2792 r2794  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    26 using System.Xml;
    27 using HeuristicLab.Collections;
    2822using HeuristicLab.Core;
    2923using HeuristicLab.Parameters;
     
    3428  /// An operator which collects the actual values of parameters and clones them into the current scope.
    3529  /// </summary>
    36   [Item("VariableInjector", "An operator which collects the actual values of parameters and clones them into the current scope.")]
     30  [Item("VariableCreator", "An operator which collects the actual values of parameters and clones them into the current scope.")]
    3731  [Creatable("Test")]
    3832  [EmptyStorableClass]
    39   public class VariableInjector : ValuesCollector {
     33  public class VariableCreator : ValuesCollector {
    4034    protected ScopeParameter CurrentScopeParameter {
    4135      get { return (ScopeParameter)Parameters["CurrentScope"]; }
     
    4539    }
    4640
    47     public VariableInjector()
     41    public VariableCreator()
    4842      : base() {
    4943      Parameters.Add(new ScopeParameter("CurrentScope", "The current scope into which the parameter values are cloned."));
Note: See TracChangeset for help on using the changeset viewer.