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 | |
---|
1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using System;
|
---|
4 | using System.Collections.Generic;
|
---|
5 | using System.Drawing;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 |
|
---|
9 | namespace 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.