1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
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.Common;
|
---|
24 | using HeuristicLab.Core;
|
---|
25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Parameters {
|
---|
28 | /// <summary>
|
---|
29 | /// A parameter whose value is defined in the parameter itself.
|
---|
30 | /// </summary>
|
---|
31 | [Item("FixedValueParameter", "A parameter whose value is defined in the parameter itself and cannot be set.")]
|
---|
32 | [StorableClass]
|
---|
33 | public class FixedValueParameter<T> : ValueParameter<T>, IFixedValueParameter<T> where T : class,IItem, new() {
|
---|
34 |
|
---|
35 | public override T Value {
|
---|
36 | get { return base.Value; }
|
---|
37 | set { throw new NotSupportedException("FixedValueParameters do not support setting their value."); }
|
---|
38 | }
|
---|
39 |
|
---|
40 | IItem IFixedValueParameter.Value { get { return Value; } }
|
---|
41 |
|
---|
42 | [StorableConstructor]
|
---|
43 | protected FixedValueParameter(bool deserializing) : base(deserializing) { }
|
---|
44 | protected FixedValueParameter(FixedValueParameter<T> original, Cloner cloner) : base(original, cloner) { }
|
---|
45 |
|
---|
46 | public FixedValueParameter() : base() { }
|
---|
47 | public FixedValueParameter(string name) : base(name) { }
|
---|
48 | public FixedValueParameter(string name, bool getsCollected) : base(name, getsCollected) { }
|
---|
49 | public FixedValueParameter(string name, T value) : base(name, value) { }
|
---|
50 | public FixedValueParameter(string name, T value, bool getsCollected) : base(name, value, getsCollected) { }
|
---|
51 | public FixedValueParameter(string name, string description) : base(name, description) { }
|
---|
52 | public FixedValueParameter(string name, string description, bool getsCollected) : base(name, description, getsCollected) { }
|
---|
53 | public FixedValueParameter(string name, string description, T value) : base(name, description, value) { }
|
---|
54 | public FixedValueParameter(string name, string description, T value, bool getsCollected) : base(name, description, value, getsCollected) { }
|
---|
55 |
|
---|
56 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
57 | return new FixedValueParameter<T>(this, cloner);
|
---|
58 | }
|
---|
59 | }
|
---|
60 | }
|
---|