Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/11 16:45:46 (13 years ago)
Author:
mkommend
Message:

#1418: Merged trunk changes into branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Parameters/3.3/LookupParameter.cs

    r5445 r5796  
    6868      : base("Anonymous", typeof(T)) {
    6969      this.actualName = Name;
     70      this.Hidden = true;
    7071    }
    7172    public LookupParameter(string name)
    7273      : base(name, typeof(T)) {
    7374      this.actualName = Name;
     75      this.Hidden = true;
    7476    }
    7577    public LookupParameter(string name, string description)
    7678      : base(name, description, typeof(T)) {
    7779      this.actualName = Name;
     80      this.Hidden = true;
    7881    }
    7982    public LookupParameter(string name, string description, string actualName)
    8083      : base(name, description, typeof(T)) {
    8184      this.actualName = string.IsNullOrWhiteSpace(actualName) ? Name : actualName;
     85      this.Hidden = true;
    8286    }
    8387
Note: See TracChangeset for help on using the changeset viewer.