Last change
on this file since 10355 was
10313,
checked in by aesterer, 11 years ago
|
Changed buttons to icon buttons and added icons to content elements
|
File size:
1.1 KB
|
Line | |
---|
1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using System.Drawing;
|
---|
4 | using System;
|
---|
5 | using System.Collections.Generic;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 |
|
---|
9 | namespace HeuristicLab.DataPreprocessing
|
---|
10 | {
|
---|
11 | [Item("Transformation", "Represents the transformation grid.")]
|
---|
12 | public class TransformationContent : Item
|
---|
13 | {
|
---|
14 |
|
---|
15 | private readonly ITransformationLogic transformationLogic;
|
---|
16 | public TransformationContent(ITransformationLogic theTransformationLogic)
|
---|
17 | {
|
---|
18 | transformationLogic = theTransformationLogic;
|
---|
19 | }
|
---|
20 |
|
---|
21 | public ITransformationLogic TransformationLogic
|
---|
22 | {
|
---|
23 | get
|
---|
24 | {
|
---|
25 | return transformationLogic;
|
---|
26 | }
|
---|
27 | }
|
---|
28 |
|
---|
29 | public TransformationContent(TransformationContent content, Cloner cloner)
|
---|
30 | : base(content, cloner)
|
---|
31 | {
|
---|
32 |
|
---|
33 | }
|
---|
34 |
|
---|
35 | public static new Image StaticItemImage
|
---|
36 | {
|
---|
37 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; }
|
---|
38 | }
|
---|
39 |
|
---|
40 | public override IDeepCloneable Clone(Cloner cloner)
|
---|
41 | {
|
---|
42 | return new TransformationContent(this, cloner);
|
---|
43 | }
|
---|
44 | }
|
---|
45 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.