Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/27/09 09:31:06 (15 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.BitVector and HeuristicLab.Constraints namespace and changed a comment in HeuristicLab.IntVector namespace(#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Constraints/AndConstraintView.cs

    r2 r1176  
    3131
    3232namespace HeuristicLab.Constraints {
     33  /// <summary>
     34  /// The visual representation of an <see cref="AndConstraint"/>.
     35  /// </summary>
    3336  public partial class AndConstraintView : ViewBase {
     37    /// <summary>
     38    /// Gets or sets the AndConstraint to represent visually.
     39    /// </summary>
     40    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.</remarks>
     41    /// No own data storage present.
    3442    public AndConstraint AndConstraint {
    3543      get { return (AndConstraint)Item; }
     
    3745    }
    3846
     47    /// <summary>
     48    /// Initializes a new instance of <see cref="AndConstraintView"/>.
     49    /// </summary>
    3950    public AndConstraintView() {
    4051      InitializeComponent();
    4152    }
     53    /// <summary>
     54    /// Initializes a new instance of <see cref="AndConstraintView"/> with the given
     55    /// <paramref name="andConstraint"/> to display.
     56    /// </summary>
     57    /// <param name="andConstraint">The constraint to represent visually.</param>
    4258    public AndConstraintView(AndConstraint andConstraint)
    4359      : this() {
     
    4561    }
    4662
     63    /// <summary>
     64    /// Removes the eventhandler from the underlying <see cref="AndConstraint"/>.
     65    /// </summary>
     66    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.
     67    /// </remarks>
    4768    protected override void RemoveItemEvents() {
    4869      AndConstraint.Changed -= new EventHandler(AndConstraint_Changed);
    4970      base.RemoveItemEvents();
    5071    }
     72    /// <summary>
     73    /// Adds an eventhandler to the underlying <see cref="AndConstraint"/>.
     74    /// </summary>
     75    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.
     76    /// </remarks>
    5177    protected override void AddItemEvents() {
    5278      base.AddItemEvents();
     
    5480    }
    5581
     82    /// <summary>
     83    /// Updates all controls with the latest values.
     84    /// </summary>
    5685    protected override void UpdateControls() {
    5786      if (AndConstraint == null) {
Note: See TracChangeset for help on using the changeset viewer.