Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataPreprocessing/3.4/Content/StatisticsContent.cs @ 15428

Last change on this file since 15428 was 15110, checked in by pfleck, 7 years ago

#2709: merged branch to trunk

File size: 2.0 KB
RevLine 
[10539]1#region License Information
2/* HeuristicLab
[14185]3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[10539]4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
[13502]21
[10539]22using System.Drawing;
[10370]23using HeuristicLab.Common;
[10245]24using HeuristicLab.Core;
[10242]25
[10370]26namespace HeuristicLab.DataPreprocessing {
[10313]27  [Item("Statistics", "Represents the statistics grid.")]
[10614]28  public class StatisticsContent : Item, IViewShortcut {
[15110]29    public static new Image StaticItemImage {
30      get { return HeuristicLab.Common.Resources.VSImageLibrary.Object; }
31    }
[10252]32
[15110]33    public ITransactionalPreprocessingData PreprocessingData { get; private set; }
34    public StatisticsLogic StatisticsLogic { get; private set; }
35
36    public StatisticsContent(ITransactionalPreprocessingData preProcessingData, StatisticsLogic statisticsLogic) {
37      PreprocessingData = preProcessingData;
38      StatisticsLogic = statisticsLogic;
[10252]39    }
40
[10245]41    public StatisticsContent(StatisticsContent content, Cloner cloner)
[10370]42      : base(content, cloner) {
[10245]43    }
44
[10370]45    public override IDeepCloneable Clone(Cloner cloner) {
[10245]46      return new StatisticsContent(this, cloner);
47    }
[10551]48
49    public event DataPreprocessingChangedEventHandler Changed {
[15110]50      add { StatisticsLogic.Changed += value; }
51      remove { StatisticsLogic.Changed -= value; }
[10551]52    }
[10242]53  }
54}
Note: See TracBrowser for help on using the repository browser.