Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridContent.cs @ 10236

Last change on this file since 10236 was 10236, checked in by sbreuer, 10 years ago
  • moved missing value functionality to ISearchLogic
  • created IStringConvertibleMatrix implementation and DataGridContentView
File size: 315 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Data;
6
7namespace HeuristicLab.DataPreprocessing {
8  public interface IDataGridContent : IStringConvertibleMatrix {
9    bool Validate(string value, out string errorMessage, int columnIndex);
10  }
11}
Note: See TracBrowser for help on using the repository browser.