- Timestamp:
- 05/28/14 12:52:24 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IFilterLogic.cs
r10844 r10900 20 20 #endregion 21 21 22 using System; 22 23 using System.Collections.Generic; 23 24 using HeuristicLab.DataPreprocessing.Filter; … … 25 26 public interface IFilterLogic { 26 27 bool[] GetFilterResult(IList<IFilter> filters, bool isAndCombination); 28 /// <summary> 29 /// Return an array which indicates whether the corresponding row should be filtered (true) or kept (false) 30 /// </summary> 31 /// <param name="filters"></param> 32 /// <param name="isAndCombination"></param> 33 /// <returns></returns> 27 34 bool[] Preview(IList<IFilter> filters, bool isAndCombination); 28 35 void Apply(IList<IFilter> filters, bool isAndCombination); 29 36 IPreprocessingData PreprocessingData { get; } 30 37 void Reset(); 38 bool IsFiltered(); 39 40 event EventHandler FilterChanged; 31 41 } 32 42 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IFilteredPreprocessingData.cs
r10783 r10900 11 11 void PersistFilter(); 12 12 void ResetFilter(); 13 bool IsFiltered { get; } 14 15 event EventHandler FilterChanged; 13 16 } 14 17 }
Note: See TracChangeset
for help on using the changeset viewer.