Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationContent.cs @ 10805

Last change on this file since 10805 was 10772, checked in by pfleck, 11 years ago
  • Current Transformations from GUI stored in TransformationContent.
  • Corrected namespace from Transformation interfaces.
File size: 2.0 KB
RevLine 
[10539]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
22using System.Drawing;
23using HeuristicLab.Common;
[10245]24using HeuristicLab.Core;
[10772]25using HeuristicLab.Problems.DataAnalysis;
26using HeuristicLab.Problems.DataAnalysis.Transformations;
[10242]27
[10539]28namespace HeuristicLab.DataPreprocessing {
[10313]29  [Item("Transformation", "Represents the transformation grid.")]
[10614]30  public class TransformationContent : Item, IViewShortcut {
[10252]31
[10772]32    public IPreprocessingData Data { get; private set; }
[10252]33
[10772]34    public ICheckedItemCollection<ITransformation> CheckedTransformationCollection { get; private set; }
35
36    public TransformationContent(IPreprocessingData data) {
37      Data = data;
38      CheckedTransformationCollection = new CheckedItemCollection<ITransformation>();
[10252]39    }
40
[10772]41    public TransformationContent(TransformationContent original, Cloner cloner)
42      : base(original, cloner) {
43      Data = original.Data;
44      CheckedTransformationCollection = new CheckedItemCollection<ITransformation>(original.CheckedTransformationCollection);
[10245]45    }
46
[10539]47    public static new Image StaticItemImage {
[10313]48      get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; }
[10245]49    }
50
[10539]51    public override IDeepCloneable Clone(Cloner cloner) {
[10245]52      return new TransformationContent(this, cloner);
53    }
[10242]54  }
55}
Note: See TracBrowser for help on using the repository browser.