Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/05/17 15:12:27 (7 years ago)
Author:
pfleck
Message:

#2709

  • Uses StringMatrix for statistics instead of winforms datagrid.
  • Precheck input/target variables only for statistics.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing/3.4/Content/StatisticsContent.cs

    r14185 r14545  
    2727  [Item("Statistics", "Represents the statistics grid.")]
    2828  public class StatisticsContent : Item, IViewShortcut {
     29    public ITransactionalPreprocessingData PreprocessingData { get; private set; }
    2930
    3031    private readonly StatisticsLogic statisticsLogic;
    31     public StatisticsContent(StatisticsLogic theStatisticsLogic) {
     32    public StatisticsContent(ITransactionalPreprocessingData preProcessingData, StatisticsLogic theStatisticsLogic) {
     33      PreprocessingData = preProcessingData;
    3234      statisticsLogic = theStatisticsLogic;
    3335    }
Note: See TracChangeset for help on using the changeset viewer.