Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/11 01:47:47 (13 years ago)
Author:
swagner
Message:

Set some parameters to hidden per default (#1377)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters/3.3/ValueLookupParameter.cs

    r5445 r5784  
    8989    public ValueLookupParameter()
    9090      : base() {
     91      this.Hidden = false;
    9192      this.getsCollected = true;
    9293    }
    9394    public ValueLookupParameter(string name)
    9495      : base(name) {
     96      this.Hidden = false;
    9597      this.getsCollected = true;
    9698    }
    9799    public ValueLookupParameter(string name, bool getsCollected)
    98100      : base(name) {
     101      this.Hidden = false;
    99102      this.getsCollected = getsCollected;
    100103    }
     
    102105      : base(name) {
    103106      this.value = value;
     107      this.Hidden = false;
    104108      this.getsCollected = true;
    105109      RegisterValueEvents();
     
    108112      : base(name) {
    109113      this.value = value;
     114      this.Hidden = false;
    110115      this.getsCollected = getsCollected;
    111116      RegisterValueEvents();
     
    113118    public ValueLookupParameter(string name, string description)
    114119      : base(name, description) {
     120      this.Hidden = false;
    115121      this.getsCollected = true;
    116122    }
    117123    public ValueLookupParameter(string name, string description, bool getsCollected)
    118124      : base(name, description) {
     125      this.Hidden = false;
    119126      this.getsCollected = getsCollected;
    120127    }
     
    122129      : base(name, description) {
    123130      this.value = value;
     131      this.Hidden = false;
    124132      this.getsCollected = true;
    125133      RegisterValueEvents();
     
    128136      : base(name, description) {
    129137      this.value = value;
     138      this.Hidden = false;
    130139      this.getsCollected = getsCollected;
    131140      RegisterValueEvents();
     
    133142    public ValueLookupParameter(string name, string description, string actualName)
    134143      : base(name, description, actualName) {
     144      this.Hidden = false;
    135145      this.getsCollected = true;
    136146    }
    137147    public ValueLookupParameter(string name, string description, string actualName, bool getsCollected)
    138148      : base(name, description, actualName) {
     149      this.Hidden = false;
    139150      this.getsCollected = getsCollected;
    140151    }
Note: See TracChangeset for help on using the changeset viewer.