Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/23/10 10:58:11 (15 years ago)
Author:
mkommend
Message:

added first version of mapping for the graph visualization (ticket #867)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/OperatorGraph.cs

    r2796 r2853  
    6767    }
    6868
     69    [Storable]
     70    private IDeepCloneable visualizationInfo;
     71    /// <summary>
     72    /// Gets or sets the visualizationInfo.
     73    /// </summary>
     74    /// /// <remarks>The VisualizationInfo can only be set once and fires afterwards and InvalidOperationException</remarks>
     75    public IDeepCloneable VisualizationInfo {
     76      get { return visualizationInfo; }
     77      set {
     78        if (visualizationInfo != null)
     79          throw new InvalidOperationException("The value of the property VisualizationInfo is already set and cannot be set again.");
     80        visualizationInfo = value;
     81      }
     82    }
     83
    6984    /// <summary>
    7085    /// Initializes a new instance of <see cref="OperatorGraph"/>.
     
    7388      Operators = new OperatorSet();
    7489      initialOperator = null;
     90      visualizationInfo = null;
    7591    }
    7692
Note: See TracChangeset for help on using the changeset viewer.