Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/07/16 10:18:05 (8 years ago)
Author:
ascheibe
Message:

#2582 created branch for Hive Web Job Manager

Location:
branches/WebJobManager
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.DataPreprocessing/3.4/Content/CorrelationMatrixContent.cs

    r13517 r13656  
    2020#endregion
    2121
    22 using System.Drawing;
    2322using HeuristicLab.Common;
    2423using HeuristicLab.Core;
     
    2827  [Item("Feature Correlation Matrix", "Represents the feature correlation matrix.")]
    2928  public class CorrelationMatrixContent : Item, IViewChartShortcut {
    30     public static new Image StaticItemImage {
    31       get { return HeuristicLab.Common.Resources.VSImageLibrary.Gradient; }
    32     }
     29
    3330
    3431    private PreprocessingContext Context { get; set; }
    35     private ITransactionalPreprocessingData PreprocessingData {
     32    private ITransactionalPreprocessingData PreprocessingData
     33    {
    3634      get { return Context.Data; }
    3735    }
    3836
    39     public DataAnalysisProblemData ProblemData {
    40       get {
     37    public DataAnalysisProblemData ProblemData
     38    {
     39      get
     40      {
    4141        var problemData = (DataAnalysisProblemData)Context.CreateNewProblemData();
    4242        foreach (var input in problemData.InputVariables)
     
    6060    }
    6161
    62     public event DataPreprocessingChangedEventHandler Changed {
     62    public event DataPreprocessingChangedEventHandler Changed
     63    {
    6364      add { PreprocessingData.Changed += value; }
    6465      remove { PreprocessingData.Changed -= value; }
Note: See TracChangeset for help on using the changeset viewer.