Changeset 9286 for branches/ImprovingStringConvertibleMatrix/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleMatrix.cs
- Timestamp:
- 03/05/13 16:37:17 (12 years ago)
- Location:
- branches/ImprovingStringConvertibleMatrix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ImprovingStringConvertibleMatrix
-
Property
svn:ignore
set to
*.suo
-
Property
svn:ignore
set to
-
branches/ImprovingStringConvertibleMatrix/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleMatrix.cs
r7259 r9286 37 37 string GetValue(int rowIndex, int columnIndex); 38 38 bool SetValue(string value, int rowIndex, int columnIndex); 39 bool SetValue(RowColumnValue rowColumnValue); 40 bool SetValue(IEnumerable<RowColumnValue> rowColumnValues); 39 41 40 42 event EventHandler ColumnsChanged; … … 43 45 event EventHandler RowNamesChanged; 44 46 event EventHandler SortableViewChanged; 45 event EventHandler<EventArgs< int, int>> ItemChanged;47 event EventHandler<EventArgs<IEnumerable<Position>>> ItemsChanged; 46 48 event EventHandler Reset; 49 } 50 public struct Position { 51 public readonly int Row, Column; 52 public Position(int row, int column) { 53 Row = row; 54 Column = column; 55 } 56 } 57 public struct RowColumnValue { 58 public readonly Position Position; 59 public readonly string Value; 47 60 61 public RowColumnValue(Position position, string value) { 62 Position = position; 63 Value = value; 64 } 48 65 } 49 66 }
Note: See TracChangeset
for help on using the changeset viewer.