[6123] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6123] | 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
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using HeuristicLab.MainForm;
|
---|
| 24 | using HeuristicLab.PluginInfrastructure;
|
---|
[9743] | 25 | using HeuristicLab.Problems.DataAnalysis.Views;
|
---|
[6123] | 26 |
|
---|
[9743] | 27 | namespace HeuristicLab.Problems.DataAnalysis.Trading.Views {
|
---|
[9992] | 28 | [View("Trading Solution View")]
|
---|
[9745] | 29 | [Content(typeof(Solution), true)]
|
---|
| 30 | public partial class SolutionView : DataAnalysisSolutionView {
|
---|
| 31 | public SolutionView() {
|
---|
[6123] | 32 | InitializeComponent();
|
---|
| 33 |
|
---|
[9928] | 34 | var solutionEvaluationViewTypes = ApplicationManager.Manager.GetTypes(typeof(ISolutionEvaluationView));
|
---|
| 35 | foreach (Type viewType in solutionEvaluationViewTypes)
|
---|
[9176] | 36 | AddViewListViewItem(viewType, HeuristicLab.Common.Resources.VSImageLibrary.Graph);
|
---|
[6123] | 37 | }
|
---|
| 38 |
|
---|
[9745] | 39 | public new Solution Content {
|
---|
| 40 | get { return (Solution)base.Content; }
|
---|
[6123] | 41 | set { base.Content = value; }
|
---|
| 42 | }
|
---|
| 43 | }
|
---|
| 44 | }
|
---|