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

    r2 r776  
    2525
    2626namespace HeuristicLab.Core {
     27  /// <summary>
     28  /// Interface to represent restrictions.
     29  /// </summary>
    2730  public interface IConstraint : IItem {
     31    /// <summary>
     32    /// Gets the description of the current instance.
     33    /// </summary>
    2834    string Description { get; }
    2935
     36    /// <summary>
     37    /// Checks whether the given <paramref name="data"/> fulfills the current constraint.
     38    /// </summary>
     39    /// <param name="data">The item to check.</param>
     40    /// <returns><c>true</c> if the current instance could be fulfilled, <c>false</c> otherwise.</returns>
    3041    bool Check(IItem data);
    3142  }
Note: See TracChangeset for help on using the changeset viewer.