Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/14 14:13:11 (11 years ago)
Author:
rstoll
Message:
  • modified PreprocessingData, uses columnIndex now instead of variableName (is faster and more convenient), set variabelName based methods to Obsolete
  • Already changed SearchLogic, DataGridLogic, StatisticLogic as well as PreprocessingDataManipulation

*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs

    r10313 r10367  
    1414
    1515    private readonly IStatisticsLogic statisticsLogic;
    16     public StatisticsContent(IStatisticsLogic theStatisticsLogic)
     16    private readonly IDataGridLogic dataGridLogic;
     17    public StatisticsContent(IStatisticsLogic theStatisticsLogic, IDataGridLogic theDataGridLogic)
    1718    {
    1819      statisticsLogic = theStatisticsLogic;
     20      dataGridLogic = theDataGridLogic;
    1921    }
    2022
     
    2729    public IStatisticsLogic StatisticsLogic
    2830    {
    29       get
    30       {
    31         return statisticsLogic;
    32       }
     31      get { return statisticsLogic; }
     32    }
     33
     34    public IDataGridLogic DataDridLogic {
     35      get { return dataGridLogic; }
    3336    }
    3437
Note: See TracChangeset for help on using the changeset viewer.