Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/13 15:56:17 (11 years ago)
Author:
pfleck
Message:
  • Added PreprocessingContext
  • Changed content type of DataPreprocessingView to PreprocessingContext
Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/DataPreprocessingView.cs

    r10134 r10219  
    33using HeuristicLab.MainForm;
    44using HeuristicLab.MainForm.WindowsForms;
    5 using HeuristicLab.Problems.DataAnalysis;
    65
    76namespace HeuristicLab.DataPreprocessing {
    87  [View("Data Preprocessing View")]
    9   [Content(typeof(DataAnalysisProblemData), false)]
     8  [Content(typeof(IPreprocessingContext), false)]
     9  [Content(typeof(PreprocessingContext), true)]
    1010  public partial class DataPreprocessingView : ItemView {
    1111
    12     public new DataAnalysisProblemData Content {
    13       get { return (DataAnalysisProblemData)base.Content; }
     12    public new IPreprocessingContext Content {
     13      get { return (IPreprocessingContext)base.Content; }
    1414      set { base.Content = value; }
    1515    }
     
    2121    protected override void OnContentChanged() {
    2222      base.OnContentChanged();
    23 
    24 
    25 
    2623    }
    2724
    2825    private void button1_Click(object sender, System.EventArgs e) {
     26
     27
     28      /*
    2929      DataAnalysisProblemData problemData = Content;
    3030      Dataset ds = problemData.Dataset;
     
    3636
    3737      MessageBox.Show("Success ;)");
     38      */
    3839    }
    3940  }
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj

    r10193 r10219  
    8484      <DependentUpon>DataPreprocessingView.cs</DependentUpon>
    8585    </Compile>
     86    <Compile Include="Implementations\PreprocessingContext.cs" />
    8687    <Compile Include="Implementations\PreprocessingData.cs" />
    8788    <Compile Include="Implementations\PreprocessingDataManipulation.cs" />
    8889    <Compile Include="Implementations\StatisticInfo.cs" />
     90    <Compile Include="Interfaces\IPreprocessingContext.cs" />
    8991    <Compile Include="Interfaces\IStatisticInfo.cs" />
    9092    <Compile Include="Interfaces\IPreprocessingData.cs" />
Note: See TracChangeset for help on using the changeset viewer.