Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/14 16:06:44 (10 years ago)
Author:
tsteinre
Message:
  • started work on undo-feature of PreprocessingData
File:
1 edited

Legend:

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

    r10544 r10547  
    2929
    3030  public interface IPreprocessingData : INamedItem {
    31     [Obsolete("use the index based variant, is faster")]
    32     T GetCell<T>(string variableName, int rowIndex);
    3331    T GetCell<T>(int columnIndex, int rowIndex);
    3432
    35     [Obsolete("use the index based variant, is faster")]
    36     void SetCell<T>(string variableName, int rowIndex, T value);
    3733    void SetCell<T>(int columnIndex, int rowIndex, T value);
    3834
    39     [Obsolete("use the index based variant, is faster")]
    40     string GetCellAsString(string variableName, int rowIndex);
    4135    string GetCellAsString(int columnIndex, int rowIndex);
    4236
     
    4539    IList<T> GetValues<T>(int columnIndex);
    4640
    47     [Obsolete("use the index based variant, is faster")]
    48     void SetValues<T>(string variableName, IList<T> values);
    4941    void SetValues<T>(int columnIndex, IList<T> values);
    5042
     
    5446    void InsertColumn<T>(string variableName, int columnIndex);
    5547
    56     [Obsolete("use the index based variant, is faster")]
    57     void DeleteColumn(string variableName);
    5848    void DeleteColumn(int columnIndex);
    5949
     
    6555    int GetColumnIndex(string variableName);
    6656
    67     [Obsolete("use the index based variant, is faster")]
    68     bool IsType<T>(string variableName);
    6957    bool IsType<T>(int columnIndex);
    70 
    7158
    7259    int Columns { get; }
     
    7663
    7764    event DataPreprocessingChangedEventHandler Changed;
     65
     66    bool IsUndoAvailable { get; }
     67    void Undo();
    7868  }
    7969}
Note: See TracChangeset for help on using the changeset viewer.