Changeset 9306 for branches/ImprovingStringConvertibleMatrix/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
- Timestamp:
- 03/11/13 16:47:11 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ImprovingStringConvertibleMatrix/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
r9286 r9306 234 234 throw new NotSupportedException(); 235 235 } 236 public bool SetValue( RowColumnValuerowColumnValue) {237 throw new NotSupportedException(); 238 } 239 public bool SetValue (IEnumerable<RowColumnValue> rowColumnValues) {236 public bool SetValue(MatrixValue<string> rowColumnValue) { 237 throw new NotSupportedException(); 238 } 239 public bool SetValues(IEnumerable<MatrixValue<string>> rowColumnValues) { 240 240 throw new NotSupportedException(); 241 241 } … … 246 246 public event EventHandler RowNamesChanged { add { } remove { } } 247 247 public event EventHandler SortableViewChanged { add { } remove { } } 248 public event EventHandler< EventArgs<IEnumerable<Position>>> ItemsChanged { add { } remove { } }248 public event EventHandler<MatrixValuesChangedEventArgs> ItemsChanged { add { } remove { } } 249 249 public event EventHandler Reset { add { } remove { } } 250 250 #endregion
Note: See TracChangeset
for help on using the changeset viewer.