Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10246 was 10246, checked in by rstoll, 10 years ago
  • Moved logic from DataGridContent to DataGridContentLogic
  • Created interface for IPreprocessingDataManipulation
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.