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/Interfaces/IItem.cs

    r2 r776  
    2525
    2626namespace HeuristicLab.Core {
     27  /// <summary>
     28  /// Interface to represent (almost) every HeuristicLab object (an object, an operator,...).
     29  /// </summary>
    2730  public interface IItem : IStorable, IViewable {
     31    /// <summary>
     32    /// Fires a new <c>Changed</c> event.
     33    /// </summary>
    2834    void FireChanged();
    2935
     36    /// <summary>
     37    /// Occurs when the current instance has changed.
     38    /// </summary>
    3039    event EventHandler Changed;
    3140  }
Note: See TracChangeset for help on using the changeset viewer.