Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/09 12:06:29 (15 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.Operators.Metaprogramming and HeuristicLab.Logging namespace and changed a comment in HeuristicLab.Core namespace(#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Logging/PointXYChartInjector.cs

    r677 r1167  
    2828
    2929namespace HeuristicLab.Logging {
     30  /// <summary>
     31  /// Injects a new PointXYChart variable into the given scope.
     32  /// </summary>
    3033  class PointXYChartInjector : OperatorBase {
     34    /// <inheritdoc select="summary"/>
    3135    public override string Description {
    3236      get { return @"TODO\r\nOperator description still missing ..."; }
    3337    }
    3438
     39    /// <summary>
     40    /// Initializes a new instance of <see cref="PointXYChartInjector"/> with three variable infos
     41    /// (<c>ConnectDots</c>, <c>Values</c> and <c>PointXYChart</c>).
     42    /// </summary>
    3543    public PointXYChartInjector() {
    3644      VariableInfo connectDotsInfo = new VariableInfo("ConnectDots", "Number of lines the linechart consists of", typeof(BoolData), VariableKind.In);
     
    4250    }
    4351
     52    /// <summary>
     53    /// Injects a new PointXYChart variable into the given <paramref name="scope"/>.
     54    /// </summary>
     55    /// <param name="scope">The current scope where to inject the variable.</param>
     56    /// <returns><c>null</c>.</returns>
    4457    public override IOperation Apply(IScope scope) {
    4558      bool connectDots = GetVariableValue<BoolData>("ConnectDots", scope, true).Data;
Note: See TracChangeset for help on using the changeset viewer.