[6134] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9615] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6134] | 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;
|
---|
[6133] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 |
|
---|
| 27 | namespace HeuristicLab.DataImporter.Data.CommandBase {
|
---|
| 28 | [AttributeUsage(AttributeTargets.Class,AllowMultiple=false,Inherited=false)]
|
---|
| 29 | public sealed class ViewableCommandInfoAttribute : Attribute{
|
---|
| 30 | public ViewableCommandInfoAttribute(string name, int activeColumnGroups, ColumnGroupState state, string groupName) {
|
---|
| 31 | this.name = name;
|
---|
| 32 | this.groupName = groupName;
|
---|
| 33 | this.state = new DataSetState(activeColumnGroups, state);
|
---|
| 34 | this.position = Int32.MaxValue;
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | private DataSetState state;
|
---|
| 38 | public DataSetState State {
|
---|
| 39 | get { return this.state; }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | private string groupName;
|
---|
| 43 | public string GroupName {
|
---|
| 44 | get { return this.groupName; }
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | private string name;
|
---|
| 48 | public string Name {
|
---|
| 49 | get { return this.name; }
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | private int position;
|
---|
| 53 | public int Position {
|
---|
| 54 | get { return this.position; }
|
---|
| 55 | set { this.position = value; }
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | private Type optionsView;
|
---|
| 59 | public Type OptionsView {
|
---|
| 60 | get { return this.optionsView; }
|
---|
| 61 | set {
|
---|
| 62 | if (!value.IsSubclassOf(typeof(CommandViewBase)) || value.IsAbstract)
|
---|
| 63 | throw new ArgumentException("Expected type T with base class CommandInfoViewBase");
|
---|
| 64 | this.optionsView = value; }
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | public int SelectedColumns {
|
---|
| 68 | get { return this.state.SelectedColumns; }
|
---|
| 69 | set { this.state.SelectedColumns = value; }
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | public int MinActiveColumnGroups {
|
---|
| 73 | get { return state.MinActiveColumnGroups; }
|
---|
| 74 | set { state.MinActiveColumnGroups = value; }
|
---|
| 75 | }
|
---|
| 76 | }
|
---|
| 77 | }
|
---|