Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/10 05:05:19 (15 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/ParameterCollectionView.cs

    r2713 r2727  
    1212namespace HeuristicLab.Core.Views {
    1313  [Content(typeof(ParameterCollection), true)]
    14   [Content(typeof(IObservableKeyedCollection<string, IParameter>), true)]
     14  [Content(typeof(IObservableKeyedCollection<string, IParameter>), false)]
    1515  public partial class ParameterCollectionView : NamedItemCollectionView<IParameter> {
    1616    protected CreateParameterDialog createParameterDialog;
     
    2929    /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>
    3030    /// <param name="scope">The scope whose variables should be represented visually.</param>
    31     public ParameterCollectionView(IObservableKeyedCollection<string, IParameter> parameterCollection)
     31    public ParameterCollectionView(IObservableKeyedCollection<string, IParameter> content)
    3232      : this() {
    33       Content = parameterCollection;
     33      Content = content;
    3434    }
    3535
Note: See TracChangeset for help on using the changeset viewer.