Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/13 15:47:05 (10 years ago)
Author:
psteiner
Message:

added logic getters ins content and constructor whicht supports logic

File:
1 edited

Legend:

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

    r10245 r10252  
    1212  class LineChartContent : Item
    1313  {
     14
     15    private readonly ILineChartLogic lineChartLogic;
     16    public LineChartContent(ILineChartLogic theLineChartLogic)
     17    {
     18      lineChartLogic = theLineChartLogic;
     19    }
     20
    1421    public LineChartContent(LineChartContent content, Cloner cloner)
    1522      : base(content, cloner)
    1623    {
    1724
     25    }
     26
     27    public ILineChartLogic LineChartLogic
     28    {
     29      get
     30      {
     31        return lineChartLogic;
     32      }
    1833    }
    1934
Note: See TracChangeset for help on using the changeset viewer.