Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/12/08 13:10:09 (16 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristLab.Data namespace (#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/EditKeyValueDialog.cs

    r187 r737  
    77
    88namespace HeuristicLab.Data {
     9  /// <summary>
     10  /// A visual representation to visualize a key-value pair.
     11  /// </summary>
    912  public partial class EditKeyValueDialog : Form {
    1013    private IItem key;
     14    /// <summary>
     15    /// Gets the current key.
     16    /// </summary>
    1117    public IItem Key {
    1218      get { return key; }
     
    1420
    1521    private IItem value;
     22    /// <summary>
     23    /// Gets the current value.
     24    /// </summary>
    1625    public IItem Value {
    1726      get { return value; }
    1827    }
    1928
     29    /// <summary>
     30    /// Initializes a new instance of the class <see cref="EditKeyValueDialog"/> with the given types of
     31    /// key and value.
     32    /// </summary>
     33    /// <param name="keyType">The type of the key.</param>
     34    /// <param name="valueType">The type of the value.</param>
    2035    public EditKeyValueDialog(Type keyType, Type valueType) {
    2136      InitializeComponent();
Note: See TracChangeset for help on using the changeset viewer.