Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/15/11 16:23:41 (13 years ago)
Author:
gkronber
Message:

#1418 added plugin for symbolic data analysis views.

Location:
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Views
Files:
2 added
1 copied

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SymbolicDataAnalysisModelView.cs

    r5692 r5693  
    2323using HeuristicLab.MainForm;
    2424using HeuristicLab.MainForm.WindowsForms;
    25 using HeuristicLab.Problems.DataAnalysis.Regression.Symbolic;
    2625
    27 namespace HeuristicLab.Problems.DataAnalysis.Views.Symbolic {
    28   [View("Symbolic Expression Model View")]
    29   [Content(typeof(SymbolicRegressionModel), true)]
     26namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
     27  [View("Symbolic data analysis model view")]
     28  [Content(typeof(ISymbolicDataAnalysisModel), true)]
    3029  public partial class SymbolicExpressionModelView : AsynchronousContentView {
    3130    public SymbolicExpressionModelView()
     
    3433    }
    3534
    36     public new SymbolicRegressionModel Content {
    37       get { return (SymbolicRegressionModel)base.Content; }
     35    public new ISymbolicDataAnalysisModel Content {
     36      get { return (ISymbolicDataAnalysisModel)base.Content; }
    3837      set { base.Content = value; }
    3938    }
Note: See TracChangeset for help on using the changeset viewer.