Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/25/10 05:46:44 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • continued work on adapting and refactoring HeuristicLab.Data according to the changes in HeuristicLab.Core
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/3.3/IStringConvertibleMatrixData.cs

    r2676 r2677  
    2828
    2929namespace HeuristicLab.Data {
    30   public interface IStringConvertibleArrayData {
    31     int Length { get; set; }
     30  public interface IStringConvertibleMatrixData {
     31    StringConvertibleArrayDataDimensions Dimensions { get; }
     32    int Rows { get; set; }
     33    int Columns { get; set; }
    3234
    3335    bool Validate(string value);
    34     string GetValue(int index);
    35     bool SetValue(string value, int index);
     36    string GetValue(int rowIndex, int columnIndex);
     37    bool SetValue(string value, int rowIndex, int columnIndex);
    3638
    37     event EventHandler<EventArgs<int>> ItemChanged;
     39    event EventHandler<EventArgs<int, int>> ItemChanged;
    3840    event EventHandler Reset;
    3941  }
Note: See TracChangeset for help on using the changeset viewer.