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

    r344 r1176  
    3131
    3232namespace HeuristicLab.Constraints {
     33  /// <summary>
     34  /// The visual representation of a <see cref="DoubleBoundedConstraint"/>.
     35  /// </summary>
    3336  public partial class DoubleBoundedConstraintView : ViewBase {
     37    /// <summary>
     38    /// Gets or sets the DoubleBoundedConstraint to represent visually.
     39    /// </summary>
     40    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
     41    /// No own data storage present.</remarks>
    3442    public DoubleBoundedConstraint DoubleBoundedConstraint {
    3543      get { return (DoubleBoundedConstraint)Item; }
     
    3745    }
    3846
     47    /// <summary>
     48    /// Initializes a new instance of <see cref="DoubleBoundedConstraintView"/>.
     49    /// </summary>
    3950    public DoubleBoundedConstraintView() {
    4051      InitializeComponent();
    4152    }
    4253
     54    /// <summary>
     55    /// Initializes a new instance of <see cref="DoubleBoundedConstraintView"/> with the given
     56    /// <paramref name="doubleBoundedConstraint"/> to display.
     57    /// </summary>
     58    /// <param name="doubleBoundedConstraint">The constraint to represent visually.</param>
    4359    public DoubleBoundedConstraintView(DoubleBoundedConstraint doubleBoundedConstraint)
    4460      : this() {
     
    4662    }
    4763
     64    /// <summary>
     65    /// Removes the eventhandler from the underlying <see cref="DoubleBoundedConstraint"/>.
     66    /// </summary>
     67    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.
     68    /// </remarks>
    4869    protected override void RemoveItemEvents() {
    4970      DoubleBoundedConstraint.Changed -= new EventHandler(DoubleBoundedConstraint_Changed);
     
    5172    }
    5273
     74    /// <summary>
     75    /// Adds an eventhandler to the underlying <see cref="DoubleBoundedConstraint"/>.
     76    /// </summary>
     77    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.
     78    /// </remarks>
    5379    protected override void AddItemEvents() {
    5480      base.AddItemEvents();
     
    5682    }
    5783
     84    /// <summary>
     85    /// Updates all controls with the latest values.
     86    /// </summary>
     87    /// <remarks>Calls <see cref="ViewBase.UpdateControls"/> of base class <see cref="ViewBase"/>.</remarks>
    5888    protected override void UpdateControls() {
    5989      base.UpdateControls();
Note: See TracChangeset for help on using the changeset viewer.