Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 13:24:56 (10 years ago)
Author:
psteiner
Message:

BugFix within the logical conjunction of filters
persistence of filters in content

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs

    r10614 r10813  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
     25using System.Collections.Generic;
     26using HeuristicLab.DataPreprocessing.Filter;
    2527
    2628namespace HeuristicLab.DataPreprocessing {
    2729  [Item("Filter", "Represents the filter grid.")]
    2830  public class FilterContent : Item, IViewShortcut {
     31
     32    private IList<IFilter> filters = new List<IFilter>();
    2933
    3034    public static new Image StaticItemImage {
     
    4347    }
    4448
     49    public IList<IFilter> Filters
     50    {
     51      get
     52      {
     53        return this.filters;
     54      }
     55      set
     56      {
     57        this.filters = value;
     58      }
     59    }
     60
    4561    public FilterContent(FilterContent content, Cloner cloner)
    4662      : base(content, cloner) {
     
    5268    }
    5369
     70
     71
    5472  }
    5573}
Note: See TracChangeset for help on using the changeset viewer.