Changeset 1167 for trunk/sources/HeuristicLab.Logging/LinechartInjector.cs
- Timestamp:
- 01/22/09 12:06:29 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Logging/LinechartInjector.cs
r77 r1167 28 28 29 29 namespace HeuristicLab.Logging { 30 /// <summary> 31 /// Injects a new Linechart into the current scope. 32 /// </summary> 30 33 public class LinechartInjector : OperatorBase { 34 /// <inheritdoc select="summary"/> 31 35 public override string Description { 32 36 get { return @"TODO\r\nOperator description still missing ..."; } 33 37 } 34 38 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> 35 43 public LinechartInjector() { 36 44 VariableInfo numberOfLinesInfo = new VariableInfo("NumberOfLines", "Number of lines the linechart consists of", typeof(IntData), VariableKind.In); … … 42 50 } 43 51 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> 44 57 public override IOperation Apply(IScope scope) { 45 58 int numberOfLines = GetVariableValue<IntData>("NumberOfLines", scope, true).Data;
Note: See TracChangeset
for help on using the changeset viewer.