- Timestamp:
- 06/04/14 10:51:34 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/FilterLogic.cs ¶
r10908 r10930 82 82 } 83 83 84 public bool IsFiltered() { 85 return preprocessingData.IsFiltered; 84 public bool IsFiltered { 85 get { 86 return preprocessingData.IsFiltered; 87 } 86 88 } 87 89 -
TabularUnified branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Interfaces/IFilterLogic.cs ¶
r10900 r10930 36 36 IPreprocessingData PreprocessingData { get; } 37 37 void Reset(); 38 bool IsFiltered ();38 bool IsFiltered { get; } 39 39 40 40 event EventHandler FilterChanged;
Note: See TracChangeset
for help on using the changeset viewer.