Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/21/10 06:14:03 (14 years ago)
Author:
swagner
Message:

Adapted views according the new read-only property (#973)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.cs

    r3376 r3454  
    132132    }
    133133
    134     public void SetDescription(string description) {
    135       if (description == null)
    136         throw new NullReferenceException("description must not be null");
    137       Description = description;
    138     }
    139 
    140134    public IEnumerable<string> GetAllNamespaces(bool selectedAssembliesOnly) {
    141135      var namespaces = new HashSet<string>();
     
    223217      typeof(System.Text.StringBuilder).Assembly,
    224218      typeof(System.Data.Linq.DataContext).Assembly,
     219      typeof(HeuristicLab.Common.IDeepCloneable).Assembly,
    225220      typeof(HeuristicLab.Core.Item).Assembly,
    226221      typeof(HeuristicLab.Data.IntValue).Assembly,
     
    258253        "System.Linq",
    259254        "System.Data.Linq",
     255        "HeuristicLab.Common",
    260256        "HeuristicLab.Core",
    261257        "HeuristicLab.Data",
     
    419415    public override IDeepCloneable Clone(Cloner cloner) {
    420416      ProgrammableOperator clone = (ProgrammableOperator)base.Clone(cloner);
    421       clone.description = description;
    422417      clone.code = Code;
    423418      clone.executeMethod = executeMethod;
Note: See TracChangeset for help on using the changeset viewer.