Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridLogic.cs @ 10534

Last change on this file since 10534 was 10369, checked in by rstoll, 10 years ago
  • Renamed PreprocessingDataManipulation to ManipulationLogic
  • Proceeded with StatisticsView
File size: 461 bytes
Line 
1using System.Collections.Generic;
2namespace HeuristicLab.DataPreprocessing {
3  public interface IDataGridLogic {
4    IEnumerable<string> ColumnNames { get; }
5    IEnumerable<string> RowNames { get; }
6    int Columns { get; }
7    int Rows { get; }
8
9    string GetValue(int rowIndex, int columnIndex);
10    bool SetValue(string value, int rowIndex, int columnIndex);
11    bool Validate(string value, out string errorMessage, int columnIndex);
12  }
13}
Note: See TracBrowser for help on using the repository browser.