Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Parameters/3.3/FixedValueParameter.cs @ 17149

Last change on this file since 17149 was 17149, checked in by abeham, 5 years ago

#3005: merged to stable (16872, 16873, 16875, 16890)

File size: 2.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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
22using System;
23using HEAL.Attic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26
27namespace 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  [StorableType("7787B99D-5F32-4639-B47A-76CB4D204392")]
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(StorableConstructorFlag _) : base(_) { }
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, T value) : base(name, value) { }
49    public FixedValueParameter(string name, string description) : base(name, description) { }
50    public FixedValueParameter(string name, string description, T value) : base(name, description, value) { }
51
52    public override IDeepCloneable Clone(Cloner cloner) {
53      return new FixedValueParameter<T>(this, cloner);
54    }
55  }
56}
Note: See TracBrowser for help on using the repository browser.