Changeset 10669 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Transformations/Transformation.cs
- Timestamp:
- 03/26/14 15:30:12 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Transformations
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Transformations/Transformation.cs
r10668 r10669 20 20 #endregion 21 21 22 using HeuristicLab.Common; 23 using HeuristicLab.Core; 22 24 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 23 25 24 namespace HeuristicLab.DataPreprocessing.Implementations { 25 public abstract class Transformation { 26 namespace HeuristicLab.DataPreprocessing.Transformations { 27 [Item("Transformation", "Represents the base class for a transformation.")] 28 public abstract class Transformation : ParameterizedNamedItem { 26 29 27 protected ITransactionalPreprocessingData preprocessingData;30 protected ITransactionalPreprocessingData PreprocessingData { get; private set; } 28 31 29 protected string column;32 protected string Column { get; private set; } 30 33 31 34 protected Transformation(ITransactionalPreprocessingData preprocessingData, string column) { 32 this.preprocessingData = preprocessingData; 33 this.column = column; 35 this.PreprocessingData = preprocessingData; 36 this.Column = column; 37 } 38 39 protected Transformation(Transformation original, Cloner cloner) 40 : base(original, cloner) { 34 41 } 35 42 … … 39 46 40 47 public abstract void Check(); 48 41 49 } 42 50 }
Note: See TracChangeset
for help on using the changeset viewer.