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

    r2 r776  
    3131
    3232namespace HeuristicLab.Core {
     33  /// <summary>
     34  /// A dialog to select a specific type.
     35  /// </summary>
    3336  public partial class ChooseTypeDialog : Form {
    3437    #region Inner Class TreeNodeSorter
     
    4649    #endregion
    4750
     51    /// <summary>
     52    /// Gets or sets the caption of the dialog.
     53    /// </summary>
     54    /// <remarks>Uses property <see cref="Form.Text"/> of base class <see cref="Form"/>.
     55    /// No own data storage present.</remarks>
    4856    public string Caption {
    4957      get { return Text; }
     
    5260
    5361    private Type myType;
     62    /// <summary>
     63    /// Gets the selected type.
     64    /// </summary>
    5465    public Type Type {
    5566      get { return myType; }
    5667    }
    5768
     69    /// <summary>
     70    /// Initializes a new instance of <see cref="ChooseTypeDialog"/>.
     71    /// </summary>
     72    /// <remarks>Calls <see cref="ChooseTypeDialog(Type)"/> with the type of <see cref="IItem"/> as
     73    /// parameter.</remarks>
    5874    public ChooseTypeDialog()
    5975      : this(typeof(IItem)) {
    6076    }
    6177
     78    /// <summary>
     79    /// Initializes a new instance of <see cref="ChooseTypeDialog"/> with the given
     80    /// <paramref name="baseType"/>.
     81    /// </summary>
     82    /// <param name="baseType">The base type of all chooseable types.</param>
    6283    public ChooseTypeDialog(Type baseType) {
    6384      InitializeComponent();
Note: See TracChangeset for help on using the changeset viewer.