Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/08 12:12:39 (16 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.Core namespace (#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/OperatorIndexEventArgs.cs

    r2 r776  
    2525
    2626namespace HeuristicLab.Core {
     27  /// <summary>
     28  /// Event arguments to be able to specify the affected operator at the specified index.
     29  /// </summary>
    2730  public class OperatorIndexEventArgs : ItemIndexEventArgs {
     31    /// <summary>
     32    /// Gets the affected operator.
     33    /// </summary>
     34    /// <remarks>Uses property <see cref="ItemEventArgs.Item"/> of base class
     35    /// <see cref="ItemIndexEventArgs"/>. No own data storage present.</remarks>
    2836    public IOperator Operator {
    2937      get { return (IOperator)Item; }
    3038    }
    3139
     40    /// <summary>
     41    /// Initializes a new instance of <see cref="OperatorIndexEventArgs"/> with the given operator
     42    /// and the specified <paramref name="index"/>.
     43    /// </summary>
     44    /// <remarks>Calls constructor of base class <see cref="ItemIndexEventArgs"/>.</remarks>
     45    /// <param name="op">The affected operator.</param>
     46    /// <param name="index">The affected index.</param>
    3247    public OperatorIndexEventArgs(IOperator op, int index)
    3348      : base(op, index) {
Note: See TracChangeset for help on using the changeset viewer.