- Timestamp:
- 05/07/14 10:49:15 (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/IDataGridLogic.cs
r10622 r10804 20 20 #endregion 21 21 22 using System; 22 23 using System.Collections.Generic; 23 24 … … 38 39 39 40 void DeleteRow(List<int> rows); 41 42 void SetSelection(IDictionary<int, IList<int>> selection); 43 IDictionary<int, IList<int>> GetSelection(); 44 void ClearSelection(); 45 46 event EventHandler SelectionChanged; 40 47 } 41 48 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10772 r10804 64 64 65 65 Dataset ExportToDataset(); 66 67 void SetSelection(IDictionary<int, IList<int>> selection); 68 IDictionary<int, IList<int>> GetSelection(); 69 void ClearSelection(); 70 71 event EventHandler SelectionChanged; 66 72 } 67 73 }
Note: See TracChangeset
for help on using the changeset viewer.