- Timestamp:
- 05/07/14 15:15:45 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingChartContent.cs
r10658 r10818 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Data; 26 using System; 27 using System.Collections.Generic; 25 28 26 29 namespace HeuristicLab.DataPreprocessing { 27 30 [Item("PreprocessingChart", "Represents a preprocessing chart.")] 28 31 public class PreprocessingChartContent : Item, IViewShortcut { 32 33 private bool allInOneMode = true; 34 35 private ICheckedItemList<StringValue> variableItemList = null; 36 29 37 30 38 private readonly IChartLogic chartLogic; … … 55 63 remove { chartLogic.Changed -= value; } 56 64 } 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 } 57 77 } 58 78 }
Note: See TracChangeset
for help on using the changeset viewer.