Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/21/08 09:48:11 (16 years ago)
Author:
vdorfer
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/CombinedOperatorView.cs

    r52 r801  
    3030
    3131namespace HeuristicLab.Operators {
     32  /// <summary>
     33  /// The visual representation of a <see cref="CombinedOperator"/>.
     34  /// </summary>
    3235  public partial class CombinedOperatorView : ViewBase {
     36    /// <summary>
     37    /// Gets or sets the combined operator to display.
     38    /// </summary>
     39    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
     40    /// No own data storage present.</remarks>
    3341    public CombinedOperator CombinedOperator {
    3442      get { return (CombinedOperator)Item; }
     
    3644    }
    3745
     46    /// <summary>
     47    /// Removes the eventhandlers in all children and from the underlying <see cref="CombinedOperator"/>.
     48    /// </summary>
     49    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
    3850    protected override void RemoveItemEvents() {
    3951      operatorGraphView.OperatorGraph = null;
     
    4456      base.RemoveItemEvents();
    4557    }
    46 
     58   
     59    /// <summary>
     60    /// Adds event handlers in all children and to the underlying <see cref="CombinedOperator"/>.
     61    /// </summary>
     62    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
    4763    protected override void AddItemEvents() {
    4864      base.AddItemEvents();
     
    5470    }
    5571
     72    /// <summary>
     73    /// Initializes a new instance of <see cref="CombinedOperatorView"/>.
     74    /// </summary>
    5675    public CombinedOperatorView() {
    5776      InitializeComponent();
    5877    }
     78    /// <summary>
     79    /// Initializes a new instance of <see cref="CombinedOperatorView"/> with the specified
     80    /// <paramref name="combinedOperator"/>.
     81    /// </summary>
     82    /// <param name="combinedOperator">The combined operator to display.</param>
    5983    public CombinedOperatorView(CombinedOperator combinedOperator)
    6084      : this() {
     
    6286    }
    6387
     88    /// <summary>
     89    /// Updates all controls with the latest data of the model.
     90    /// </summary>
    6491    protected override void UpdateControls() {
    6592      base.UpdateControls();
Note: See TracChangeset for help on using the changeset viewer.