- Timestamp:
- 03/05/14 16:06:44 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10544 r10547 29 29 30 30 public interface IPreprocessingData : INamedItem { 31 [Obsolete("use the index based variant, is faster")]32 T GetCell<T>(string variableName, int rowIndex);33 31 T GetCell<T>(int columnIndex, int rowIndex); 34 32 35 [Obsolete("use the index based variant, is faster")]36 void SetCell<T>(string variableName, int rowIndex, T value);37 33 void SetCell<T>(int columnIndex, int rowIndex, T value); 38 34 39 [Obsolete("use the index based variant, is faster")]40 string GetCellAsString(string variableName, int rowIndex);41 35 string GetCellAsString(int columnIndex, int rowIndex); 42 36 … … 45 39 IList<T> GetValues<T>(int columnIndex); 46 40 47 [Obsolete("use the index based variant, is faster")]48 void SetValues<T>(string variableName, IList<T> values);49 41 void SetValues<T>(int columnIndex, IList<T> values); 50 42 … … 54 46 void InsertColumn<T>(string variableName, int columnIndex); 55 47 56 [Obsolete("use the index based variant, is faster")]57 void DeleteColumn(string variableName);58 48 void DeleteColumn(int columnIndex); 59 49 … … 65 55 int GetColumnIndex(string variableName); 66 56 67 [Obsolete("use the index based variant, is faster")]68 bool IsType<T>(string variableName);69 57 bool IsType<T>(int columnIndex); 70 71 58 72 59 int Columns { get; } … … 76 63 77 64 event DataPreprocessingChangedEventHandler Changed; 65 66 bool IsUndoAvailable { get; } 67 void Undo(); 78 68 } 79 69 }
Note: See TracChangeset
for help on using the changeset viewer.