Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/10 05:05:19 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on content definitions of views
  • corrected bug in cloning of CombinedOperator
File:
1 edited

Legend:

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

    r2713 r2727  
    1212namespace HeuristicLab.Core.Views {
    1313  [Content(typeof(OperatorSet), true)]
    14   [Content(typeof(IObservableSet<IOperator>), true)]
     14  [Content(typeof(IObservableSet<IOperator>), false)]
    1515  public partial class OperatorSetView : ItemSetView<IOperator> {
    1616    protected TypeSelectorDialog typeSelectorDialog;
     
    3030    /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>
    3131    /// <param name="scope">The scope whose variables should be represented visually.</param>
    32     public OperatorSetView(IObservableSet<IOperator> operatorSet)
     32    public OperatorSetView(IObservableSet<IOperator> content)
    3333      : this() {
    34       Content = operatorSet;
     34      Content = content;
    3535    }
    3636
Note: See TracChangeset for help on using the changeset viewer.