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/NamedItemCollectionView.cs

    r2713 r2727  
    3232
    3333namespace HeuristicLab.Core.Views {
     34  [Content(typeof(NamedItemCollection<>), true)]
    3435  public partial class NamedItemCollectionView<T> : ItemCollectionView<T> where T : class, INamedItem {
    3536    public new IObservableKeyedCollection<string, T> Content {
     
    4748      InitializeComponent();
    4849      Caption = "Named Item Collection";
     50    }
     51    public NamedItemCollectionView(IObservableKeyedCollection<string, T> content)
     52      : this() {
     53      Content = content;
    4954    }
    5055
Note: See TracChangeset for help on using the changeset viewer.