- Timestamp:
- 12/04/13 12:56:18 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10168 r10181 68 68 } 69 69 70 public IList<T> GetValues<T>(int columnIndex) { 70 public T GetCell<T>(string variableName, int row) { 71 throw new NotImplementedException(); 72 } 73 74 public void SetCell<T>(string variableName, int row, T value) { 75 throw new NotImplementedException(); 76 } 77 78 public IEnumerable<T> GetValues<T>(int columnIndex) { 79 throw new NotImplementedException(); 80 } 81 82 public IEnumerable<T> GetValues<T>(string variableName) { 71 83 throw new NotImplementedException(); 72 84 } 73 85 74 86 public void SetValues<T>(int columnIndex, IEnumerable<T> values) { 87 throw new NotImplementedException(); 88 } 89 90 public void SetValues<T>(string variableName, IEnumerable<T> values) { 75 91 throw new NotImplementedException(); 76 92 } … … 92 108 } 93 109 94 public IList<string> VariableNames { 110 public void DeleteColumn(string variableName) { 111 throw new NotImplementedException(); 112 } 113 114 IEnumerable<string> IPreprocessingData.VariableNames { 95 115 get { throw new NotImplementedException(); } 96 116 } 97 117 98 118 public bool IsType<T>(int columnIndex) { 119 throw new NotImplementedException(); 120 } 121 122 public bool IsType<T>(string variableName) { 99 123 throw new NotImplementedException(); 100 124 }
Note: See TracChangeset
for help on using the changeset viewer.