Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/14/14 10:46:41 (10 years ago)
Author:
psteiner
Message:

BugFix transactions null

File:
1 edited

Legend:

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

    r10813 r10842  
    3737
    3838    private readonly IFilterLogic filterLogic;
     39
     40    public bool isAndCombination = true;
     41
    3942    public FilterContent(IFilterLogic theFilterLogic) {
    4043      filterLogic = theFilterLogic;
     
    5962    }
    6063
     64    public bool IsAndCombination
     65    {
     66      get
     67      {
     68        return this.isAndCombination;
     69      }
     70      set
     71      {
     72        this.isAndCombination = value;
     73      }
     74    }
     75
    6176    public FilterContent(FilterContent content, Cloner cloner)
    6277      : base(content, cloner) {
Note: See TracChangeset for help on using the changeset viewer.