Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/13 15:56:17 (10 years ago)
Author:
pfleck
Message:
  • Added PreprocessingContext
  • Changed content type of DataPreprocessingView to PreprocessingContext
File:
1 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  }
Note: See TracChangeset for help on using the changeset viewer.