Rev | Line | |
---|
[13656] | 1 | using HeuristicLab.Common;
|
---|
[10877] | 2 | using HeuristicLab.Core;
|
---|
| 3 |
|
---|
[10999] | 4 | namespace HeuristicLab.DataPreprocessing {
|
---|
[10877] | 5 | [Item("DataCompletenessChart", "Represents a datacompleteness chart.")]
|
---|
| 6 |
|
---|
[11070] | 7 | public class DataCompletenessChartContent : Item, IViewChartShortcut {
|
---|
[10877] | 8 |
|
---|
[13656] | 9 |
|
---|
[13508] | 10 | //public DataGridLogic DataGridLogic { get; private set; }
|
---|
| 11 | public SearchLogic SearchLogic { get; private set; }
|
---|
[10877] | 12 |
|
---|
[11070] | 13 | public DataCompletenessChartContent(SearchLogic searchLogic) {
|
---|
[11004] | 14 | SearchLogic = searchLogic;
|
---|
[10877] | 15 | }
|
---|
[11070] | 16 |
|
---|
[10999] | 17 | public DataCompletenessChartContent(DataCompletenessChartContent content, Cloner cloner)
|
---|
[11070] | 18 | : base(content, cloner) {
|
---|
| 19 | SearchLogic = content.SearchLogic;
|
---|
[10913] | 20 | }
|
---|
| 21 |
|
---|
[10999] | 22 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[10877] | 23 | return new DataCompletenessChartContent(this, cloner);
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
| 26 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.