Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 15:15:45 (10 years ago)
Author:
psteiner
Message:

Persistence of charting congfiguration

File:
1 edited

Legend:

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

    r10658 r10818  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
     25using HeuristicLab.Data;
     26using System;
     27using System.Collections.Generic;
    2528
    2629namespace HeuristicLab.DataPreprocessing {
    2730  [Item("PreprocessingChart", "Represents a preprocessing chart.")]
    2831  public class PreprocessingChartContent : Item, IViewShortcut {
     32
     33    private bool allInOneMode = true;
     34
     35    private ICheckedItemList<StringValue> variableItemList = null;
     36
    2937
    3038    private readonly IChartLogic chartLogic;
     
    5563      remove { chartLogic.Changed -= value; }
    5664    }
     65
     66    public bool AllInOneMode
     67    {
     68      get { return this.allInOneMode; }
     69      set { this.allInOneMode = value; }
     70    }
     71
     72    public ICheckedItemList<StringValue> VariableItemList
     73    {
     74      get { return this.variableItemList; }
     75      set { this.variableItemList = value; }
     76    }
    5777  }
    5878}
Note: See TracChangeset for help on using the changeset viewer.