Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataCompletenessChartContent.cs @ 10884

Last change on this file since 10884 was 10877, checked in by psteiner, 11 years ago

Filters stored in Content
Preparation DataCompletenessChart

File size: 1.0 KB
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Core;
3using System;
4using System.Collections.Generic;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8
9namespace HeuristicLab.DataPreprocessing
10{
11  [Item("DataCompletenessChart", "Represents a datacompleteness chart.")]
12  public class DataCompletenessChartContent : Item, IViewShortcut
13  {
14
15    private readonly IChartLogic chartLogic;
16
17    public DataCompletenessChartContent(IChartLogic chartLogic)
18    {
19      this.chartLogic = chartLogic;
20    }
21
22    public DataCompletenessChartContent(DataCompletenessChartContent content, Cloner cloner)
23      : base(content, cloner)
24    {
25    }
26
27    public IChartLogic ChartLogic
28    {
29      get
30      {
31        return chartLogic;
32      }
33    }
34
35    public static new Image StaticItemImage
36    {
37      get { return HeuristicLab.Common.Resources.VSImageLibrary.EditBrightnessContrast; }
38    }
39
40    public override IDeepCloneable Clone(Cloner cloner)
41    {
42      return new DataCompletenessChartContent(this, cloner);
43    }
44  }
45}
Note: See TracBrowser for help on using the repository browser.