Changeset 10184 for branches/DataPreprocessing
- Timestamp:
- 12/04/13 13:29:39 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10182 r10184 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 using HeuristicLab.Core; … … 28 27 29 28 public interface IPreprocessingData : INamedItem { 30 [Obsolete]T GetCell<T>(int rowIndex, int columnIndex);31 [Obsolete]void SetCell<T>(int rowIndex, int columnIndex, T value);32 33 29 T GetCell<T>(string variableName, int row); 34 30 void SetCell<T>(string variableName, int row, T value); 35 31 36 [Obsolete]IEnumerable<T> GetValues<T>(int columnIndex);37 32 IEnumerable<T> GetValues<T>(string variableName); 38 [Obsolete]void SetValues<T>(int columnIndex, IEnumerable<T> values);39 33 void SetValues<T>(string variableName, IEnumerable<T> values); 40 34 … … 43 37 44 38 void InsertColumn(string variableName, int columnIndex); 45 [Obsolete]void DeleteColumn(int columnIndex);46 39 void DeleteColumn(string variableName); 47 40 48 41 IEnumerable<string> VariableNames { get; } 49 [Obsolete]bool IsType<T>(int columnIndex);50 42 bool IsType<T>(string variableName); 51 43
Note: See TracChangeset
for help on using the changeset viewer.