Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/09 10:38:42 (16 years ago)
Author:
vdorfer
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.TestFunctions/TestFunctionInjectorView.cs

    r109 r1188  
    3232
    3333namespace HeuristicLab.TestFunctions {
     34  /// <summary>
     35  /// Visual representation of a <see cref="TestFunctionInjector"/>.
     36  /// </summary>
    3437  public partial class TestFunctionInjectorView : ViewBase {
     38    /// <summary>
     39    /// Gets or sets the TestFunctionInjector to represent visually.
     40    /// </summary>
     41    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
     42    /// No own data storage present.</remarks>
    3543    public TestFunctionInjector TestFunctionInjector {
    3644      get { return (TestFunctionInjector)base.Item; }
     
    3846    }
    3947
     48    /// <summary>
     49    /// Initializes a new instance of <see cref="TestFunctionInjectorView"/>.
     50    /// </summary>
    4051    public TestFunctionInjectorView() {
    4152      InitializeComponent();
    4253    }
    4354
     55    /// <summary>
     56    /// Initializes a new instance of <see cref="TestFunctionInjectorView"/> with the given
     57    /// <paramref name="testFunctionInjector"/> to display.
     58    /// </summary>
     59    /// <param name="testFunctionInjector">The injector to represent visually.</param>
    4460    public TestFunctionInjectorView(TestFunctionInjector testFunctionInjector)
    4561      : this() {
     
    4763    }
    4864
     65    /// <summary>
     66    /// Removes the eventhandler from the underlying controls.
     67    /// </summary>
     68    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.
     69    /// </remarks>
    4970    protected override void RemoveItemEvents() {
    5071      maximizationCheckBox.DataBindings.Clear();
     
    5576    }
    5677
     78    /// <summary>
     79    /// Adds eventhandlers to the underlying controls.
     80    /// </summary>
     81    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.
     82    /// </remarks>
    5783    protected override void AddItemEvents() {
    5884      base.AddItemEvents();
     
    6389    }
    6490
     91    /// <summary>
     92    /// Updates all controls with the latest values.
     93    /// </summary>
     94    /// <remarks>Calls <see cref="ViewBase.UpdateControls"/> of base class <see cref="ViewBase"/>.</remarks>
    6595    protected override void UpdateControls() {
    6696      base.UpdateControls();
Note: See TracChangeset for help on using the changeset viewer.