Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/15/11 17:02:57 (13 years ago)
Author:
gkronber
Message:

#1418 ported views for support vector machine solutions and models.

Location:
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4
Files:
1 edited
2 copied

Legend:

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

    r5692 r5694  
    2525
    2626namespace HeuristicLab.Problems.DataAnalysis.Views {
    27   [View("Data Analysis Solution View")]
    28   [Content(typeof(DataAnalysisSolution))]
     27  [View("Data analysis solution view")]
     28  [Content(typeof(IDataAnalysisSolution))]
    2929  public partial class DataAnalysisSolutionView : AsynchronousContentView {
    3030    public DataAnalysisSolutionView() {
     
    3232    }
    3333
    34     public new DataAnalysisSolution Content {
    35       get { return (DataAnalysisSolution)base.Content; }
     34    public new IDataAnalysisSolution Content {
     35      get { return (IDataAnalysisSolution)base.Content; }
    3636      set { base.Content = value; }
    3737    }
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj

    r5678 r5694  
    140140      <DependentUpon>DiscriminantFunctionClassificationSolutionView.cs</DependentUpon>
    141141    </Compile>
     142    <Compile Include="DataAnalysisSolutionView.cs">
     143      <SubType>UserControl</SubType>
     144    </Compile>
     145    <Compile Include="DataAnalysisSolutionView.Designer.cs">
     146      <DependentUpon>DataAnalysisSolutionView.cs</DependentUpon>
     147    </Compile>
    142148    <Compile Include="Regression\RegressionSolutionEstimatedValuesView.cs">
    143149      <SubType>UserControl</SubType>
Note: See TracChangeset for help on using the changeset viewer.