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/PreprocessingChartContent.cs

    r13508 r13656  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Drawing;
    2524using System.Linq;
    2625using HeuristicLab.Analysis;
     
    3231  [Item("PreprocessingChart", "Represents a preprocessing chart.")]
    3332  public class PreprocessingChartContent : Item, IViewChartShortcut {
    34     public static new Image StaticItemImage {
    35       get { return HeuristicLab.Common.Resources.VSImageLibrary.PieChart; }
    36     }
     33
    3734
    3835    private bool allInOneMode = true;
    39     public bool AllInOneMode {
     36    public bool AllInOneMode
     37    {
    4038      get { return this.allInOneMode; }
    4139      set { this.allInOneMode = value; }
     
    4341
    4442    private ICheckedItemList<StringValue> variableItemList = null;
    45     public ICheckedItemList<StringValue> VariableItemList {
     43    public ICheckedItemList<StringValue> VariableItemList
     44    {
    4645      get { return this.variableItemList; }
    4746      set { this.variableItemList = value; }
     
    135134    }
    136135
    137     public event DataPreprocessingChangedEventHandler Changed {
     136    public event DataPreprocessingChangedEventHandler Changed
     137    {
    138138      add { PreprocessingData.Changed += value; }
    139139      remove { PreprocessingData.Changed -= value; }
Note: See TracChangeset for help on using the changeset viewer.