Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/13 16:37:17 (11 years ago)
Author:
sforsten
Message:

#2018:

  • added new methods to the interface IStringConvertibleMatrix as well as two structs. Also the event ItemChanged has been changed to ItemsChanged
  • class ValueTypeMatrix now implements IStringConvertibleMatrix instead of the classes which inherit from it
  • small changes have been applied to a lot of classes to correctly implement the changed interface IStringConvertibleMatrix
  • solution file, Build.cmd and PreBuildEvent.cmd have been added
Location:
branches/ImprovingStringConvertibleMatrix
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/ImprovingStringConvertibleMatrix

    • Property svn:ignore set to
      *.suo
  • branches/ImprovingStringConvertibleMatrix/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs

    r9217 r9286  
    234234      throw new NotSupportedException();
    235235    }
     236    public bool SetValue(RowColumnValue rowColumnValue) {
     237      throw new NotSupportedException();
     238    }
     239    public bool SetValue(IEnumerable<RowColumnValue> rowColumnValues) {
     240      throw new NotSupportedException();
     241    }
    236242
    237243    public event EventHandler ColumnsChanged { add { } remove { } }
     
    240246    public event EventHandler RowNamesChanged { add { } remove { } }
    241247    public event EventHandler SortableViewChanged { add { } remove { } }
    242     public event EventHandler<EventArgs<int, int>> ItemChanged { add { } remove { } }
     248    public event EventHandler<EventArgs<IEnumerable<Position>>> ItemsChanged { add { } remove { } }
    243249    public event EventHandler Reset { add { } remove { } }
    244250    #endregion
Note: See TracChangeset for help on using the changeset viewer.