- Timestamp:
- 03/26/14 16:09:03 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Transformations
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Transformations/Transformation.cs
r10669 r10671 28 28 public abstract class Transformation : ParameterizedNamedItem { 29 29 30 protected new ParameterCollection Parameters { 31 get { return base.Parameters; } 32 } 33 30 34 protected ITransactionalPreprocessingData PreprocessingData { get; private set; } 31 35 32 36 protected string Column { get; private set; } 37 38 protected Transformation() { 39 } 33 40 34 41 protected Transformation(ITransactionalPreprocessingData preprocessingData, string column) { … … 39 46 protected Transformation(Transformation original, Cloner cloner) 40 47 : base(original, cloner) { 48 PreprocessingData = (ITransactionalPreprocessingData)original.PreprocessingData.Clone(); 49 Column = original.Column; 41 50 } 42 51
Note: See TracChangeset
for help on using the changeset viewer.