[10539] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[10539] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System.Drawing;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
[10245] | 24 | using HeuristicLab.Core;
|
---|
[16565] | 25 | using HEAL.Attic;
|
---|
[10242] | 26 |
|
---|
[10539] | 27 | namespace HeuristicLab.DataPreprocessing {
|
---|
[14903] | 28 | [Item("Multi Scatter Plot", "Represents a multi scatter plot.")]
|
---|
[16565] | 29 | [StorableType("1F55FF9A-2EE3-4A5B-BEF4-8F19D9A3A54D")]
|
---|
[14462] | 30 | public class MultiScatterPlotContent : ScatterPlotContent {
|
---|
[14996] | 31 | public static new Image StaticItemImage {
|
---|
| 32 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Performance; }
|
---|
| 33 | }
|
---|
[10252] | 34 |
|
---|
[15518] | 35 | #region Constructor, Cloning & Persistence
|
---|
[14462] | 36 | public MultiScatterPlotContent(IFilteredPreprocessingData preprocessingData)
|
---|
[10992] | 37 | : base(preprocessingData) {
|
---|
[10252] | 38 | }
|
---|
| 39 |
|
---|
[15518] | 40 | public MultiScatterPlotContent(MultiScatterPlotContent original, Cloner cloner)
|
---|
| 41 | : base(original, cloner) {
|
---|
[10245] | 42 | }
|
---|
[10987] | 43 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[14462] | 44 | return new MultiScatterPlotContent(this, cloner);
|
---|
[10987] | 45 | }
|
---|
[15518] | 46 |
|
---|
| 47 | [StorableConstructor]
|
---|
[16565] | 48 | protected MultiScatterPlotContent(StorableConstructorFlag _) : base(_) { }
|
---|
[15518] | 49 | #endregion
|
---|
[10242] | 50 | }
|
---|
| 51 | }
|
---|