Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/13 14:39:44 (10 years ago)
Author:
rstoll
Message:
  • removed NotImplementedException in property Rows since it is invoked by an event
  • set fields number of columns / rows to read only
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs

    r10236 r10243  
    3232    string GetCellAsString(string variableName, int row);
    3333
    34     IEnumerable<T> GetValues<T>(string variableName);
     34    IList<T> GetValues<T>(string variableName);
    3535    void SetValues<T>(string variableName, IEnumerable<T> values);
    3636
     
    4444    IntRange TestPartition { get; }
    4545
    46     IList<string> VariableNames { get; }
     46    IEnumerable<string> VariableNames { get; }
     47    string GetVariableName(int columnIndex);
    4748    bool IsType<T>(string variableName);
    4849
Note: See TracChangeset for help on using the changeset viewer.