- Timestamp:
- 03/12/14 12:33:09 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridContent.cs
r10558 r10571 140 140 public event EventHandler Reset; 141 141 142 public event DataPreprocessingChangedEventHandler Changed { 143 add { dataGridLogic.Changed += value; } 144 remove { dataGridLogic.Changed -= value; } 145 } 142 146 } 143 147 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridLogic.cs
r10539 r10571 120 120 return valid; 121 121 } 122 123 public event DataPreprocessingChangedEventHandler Changed { 124 add { preprocessingData.Changed += value; } 125 remove { preprocessingData.Changed -= value; } 126 } 122 127 } 123 128 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridContent.cs
r10539 r10571 26 26 IDataGridLogic DataGridLogic { get; } 27 27 IManipulationLogic PreprocessingDataManipulation { get; } 28 29 event DataPreprocessingChangedEventHandler Changed; 28 30 } 29 31 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridLogic.cs
r10558 r10571 32 32 bool SetValue(string value, int rowIndex, int columnIndex); 33 33 bool Validate(string value, out string errorMessage, int columnIndex); 34 35 event DataPreprocessingChangedEventHandler Changed; 34 36 } 35 37 }
Note: See TracChangeset
for help on using the changeset viewer.