- Timestamp:
- 01/22/14 16:53:31 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingContext.cs
r10307 r10383 20 20 #endregion 21 21 22 using System; 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Optimization; … … 25 26 26 27 namespace HeuristicLab.DataPreprocessing { 27 public interface IPreprocessingContext : IItem { 28 public interface IPreprocessingContext 29 : IItem { 30 28 31 IPreprocessingData Data { get; } 29 32 30 /// <summary> 31 /// Parent algorithm, if available, or problem. 32 /// </summary> 33 IItem ParentItem { get; } 34 33 [Obsolete] 35 34 IDataAnalysisProblemData DataAnalysisProblemData { get; } 36 35 37 36 IAlgorithm Algorithm { get; } 38 37 39 IProblem Problem { get; } 38 IDataAnalysisProblem Problem { get; } 39 40 IItem ExportAlgorithmOrProblem(); 41 42 IAlgorithm ExportAlgorithm(); 43 44 IProblem ExportProblem(); 40 45 } 41 46 }
Note: See TracChangeset
for help on using the changeset viewer.