Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataPreprocessing/3.4/Implementations/DataCompletenessChartContent.cs @ 11114

Last change on this file since 11114 was 11070, checked in by mkommend, 10 years ago

#2206: Clean up of data preprocessing code (removed unused code, used more appropriate collections, hiding of the backtransform button of symreg models).

File size: 973 bytes
Line 
1using System.Drawing;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4
5namespace HeuristicLab.DataPreprocessing {
6  [Item("DataCompletenessChart", "Represents a datacompleteness chart.")]
7
8  public class DataCompletenessChartContent : Item, IViewChartShortcut {
9    public static new Image StaticItemImage {
10      get { return HeuristicLab.Common.Resources.VSImageLibrary.EditBrightnessContrast; }
11    }
12
13    public IDataGridLogic DataGridLogic { get; private set; }
14    public ISearchLogic SearchLogic { get; private set; }
15
16    public DataCompletenessChartContent(SearchLogic searchLogic) {
17      SearchLogic = searchLogic;
18    }
19
20    public DataCompletenessChartContent(DataCompletenessChartContent content, Cloner cloner)
21      : base(content, cloner) {
22      SearchLogic = content.SearchLogic;
23    }
24
25    public override IDeepCloneable Clone(Cloner cloner) {
26      return new DataCompletenessChartContent(this, cloner);
27    }
28  }
29}
Note: See TracBrowser for help on using the repository browser.