- Timestamp:
- 04/23/14 12:38:07 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10740 r10772 28 28 using HeuristicLab.Data; 29 29 using HeuristicLab.Problems.DataAnalysis; 30 using HeuristicLab.Problems.DataAnalysis.Transformations; 30 31 31 32 namespace HeuristicLab.DataPreprocessing { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationContent.cs
r10614 r10772 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Problems.DataAnalysis; 26 using HeuristicLab.Problems.DataAnalysis.Transformations; 25 27 26 28 namespace HeuristicLab.DataPreprocessing { … … 28 30 public class TransformationContent : Item, IViewShortcut { 29 31 30 private readonly ITransformationLogic transformationLogic; 31 public TransformationContent(ITransformationLogic theTransformationLogic) { 32 transformationLogic = theTransformationLogic; 32 public IPreprocessingData Data { get; private set; } 33 34 public ICheckedItemCollection<ITransformation> CheckedTransformationCollection { get; private set; } 35 36 public TransformationContent(IPreprocessingData data) { 37 Data = data; 38 CheckedTransformationCollection = new CheckedItemCollection<ITransformation>(); 33 39 } 34 40 35 public ITransformationLogic TransformationLogic { 36 get { 37 return transformationLogic; 38 } 39 } 40 41 public TransformationContent(TransformationContent content, Cloner cloner) 42 : base(content, cloner) { 43 41 public TransformationContent(TransformationContent original, Cloner cloner) 42 : base(original, cloner) { 43 Data = original.Data; 44 CheckedTransformationCollection = new CheckedItemCollection<ITransformation>(original.CheckedTransformationCollection); 44 45 } 45 46
Note: See TracChangeset
for help on using the changeset viewer.