Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/13 15:39:53 (11 years ago)
Author:
tsteinre
Message:
  • created Interface IDataPreprocessorStarter for removing depedencies from Problems.DataAnalyis.Views to DataPreprocessing
Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj

    r10249 r10250  
    8181    <Compile Include="Interfaces\IPreprocessingDataManipulation.cs" />
    8282    <Compile Include="Implementations\FilterContent.cs" />
     83    <Compile Include="Implementations\DataPreprocessorStarter.cs" />
    8384    <Compile Include="Implementations\FilterLogic.cs" />
    8485    <Compile Include="Implementations\HistogramContent.cs" />
     
    106107    <Compile Include="Implementations\SearchLogic.cs" />
    107108    <Compile Include="Implementations\StatisticsLogic.cs" />
    108     <Compile Include="Views\DataGridContentView.cs">
    109       <SubType>UserControl</SubType>
    110     </Compile>
     109    <Compile Include="Views\DataGridContentView.cs" />
    111110    <Compile Include="Views\DataGridContentView.Designer.cs">
    112111      <DependentUpon>DataGridContentView.cs</DependentUpon>
     
    178177      <Private>False</Private>
    179178    </ProjectReference>
     179    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Views\3.4\HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj">
     180      <Project>{3e9e8944-44ff-40bb-a622-3a4a7dd0f198}</Project>
     181      <Name>HeuristicLab.Problems.DataAnalysis.Views-3.4</Name>
     182    </ProjectReference>
    180183    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj">
    181184      <Project>{df87c13e-a889-46ff-8153-66dcaa8c5674}</Project>
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingContext.cs

    r10240 r10250  
    2828  [Item("PreprocessingContext", "PreprocessingContext")]
    2929  public class PreprocessingContext : Item, IPreprocessingContext {
    30     public PreprocessingContext(IPreprocessingData data, IItem parentItem, IDataAnalysisProblemData dataAnalysisProblemData, IAlgorithm algorithm) {
    31       Data = data;
     30    public PreprocessingContext(IDataAnalysisProblemData dataAnalysisProblemData, IItem parentItem, IAlgorithm algorithm) {
     31      Data = new PreprocessingData(dataAnalysisProblemData);
    3232      ParentItem = parentItem;
    3333      DataAnalysisProblemData = dataAnalysisProblemData;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Plugin.cs.frame

    r10240 r10250  
    3232  [PluginDependency("HeuristicLab.Core", "3.3")]
    3333  [PluginDependency("HeuristicLab.Collections", "3.3")]
     34  [PluginDependency("HeuristicLab.Data","3.3")]
     35  [PluginDependency("HeuristicLab.Data.Views","3.3")]
    3436  [PluginDependency("HeuristicLab.Persistence", "3.3")]
    3537  [PluginDependency("HeuristicLab.Optimization", "3.3")]
     
    3739  [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]
    3840  [PluginDependency("HeuristicLab.Problems.DataAnalysis","3.4")]
     41  [PluginDependency("HeuristicLab.Problems.DataAnalysis.Views","3.4")]
    3942  public class HeuristicLabDataPreprocessingPlugin : PluginBase {
    4043  }
Note: See TracChangeset for help on using the changeset viewer.