Last change
on this file since 12726 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 | |
---|
1 | using System.Drawing;
|
---|
2 | using HeuristicLab.Common;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 |
|
---|
5 | namespace 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.