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/LinechartInjector.cs

    r77 r1167  
    2828
    2929namespace HeuristicLab.Logging {
     30  /// <summary>
     31  /// Injects a new Linechart into the current scope.
     32  /// </summary>
    3033  public class LinechartInjector : 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="LinechartInjector"/> with three variable infos
     41    /// (<c>NumberOfLines</c>, <c>Values</c> and <c>Linechart</c>).
     42    /// </summary>
    3543    public LinechartInjector() {
    3644      VariableInfo numberOfLinesInfo = new VariableInfo("NumberOfLines", "Number of lines the linechart consists of", typeof(IntData), VariableKind.In);
     
    4250    }
    4351
     52    /// <summary>
     53    /// Injects a new Linechart variable into the given <paramref name="scope"/>.
     54    /// </summary>
     55    /// <param name="scope">The current scope where to inject the Linechart variable.</param>
     56    /// <returns><c>null</c>.</returns>
    4457    public override IOperation Apply(IScope scope) {
    4558      int numberOfLines = GetVariableValue<IntData>("NumberOfLines", scope, true).Data;
Note: See TracChangeset for help on using the changeset viewer.