Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/09 12:06:29 (15 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.Operators.Metaprogramming and HeuristicLab.Logging namespace and changed a comment in HeuristicLab.Core namespace(#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Logging/LogView.cs

    r283 r1167  
    3131
    3232namespace HeuristicLab.Logging {
     33  /// <summary>
     34  /// Visual representation of the <see cref="Log"/> class.
     35  /// </summary>
    3336  public partial class LogView : ViewBase {
     37    /// <summary>
     38    /// Gets or sets the Log item to represent visually.
     39    /// </summary>
     40    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
     41    /// No own data storage present.</remarks>
    3442    public Log Log {
    3543      get { return (Log)base.Item; }
     
    3745    }
    3846
     47    /// <summary>
     48    /// Initializes a new instance of <see cref="LogView"/>.
     49    /// </summary>
    3950    public LogView() {
    4051      InitializeComponent();
    4152      Caption = "Log View";
    4253    }
     54    /// <summary>
     55    /// Initializes a new instance of <see cref="LogView"/> with the given <paramref name="log"/>.
     56    /// </summary>
     57    /// <param name="log">The log object to represent visually.</param>
    4358    public LogView(Log log)
    4459      : this() {
     
    4661    }
    4762
     63    /// <summary>
     64    /// Removes the event handlers from the underlying <see cref="Log"/>.
     65    /// </summary>
     66    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
    4867    protected override void RemoveItemEvents() {
    4968      if (Log != null) {
     
    5372      base.RemoveItemEvents();
    5473    }
     74    /// <summary>
     75    /// Adds event handlers to the underlying <see cref="Log"/>.
     76    /// </summary>
     77    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
    5578    protected override void AddItemEvents() {
    5679      base.AddItemEvents();
     
    6184    }
    6285
     86    /// <summary>
     87    /// Updates all controls with the latest data of the model.
     88    /// </summary>
     89    /// <remarks>Calls <see cref="ViewBase.UpdateControls"/> of base class
     90    /// <see cref="UpdateControls"/>.</remarks>
    6391    protected override void UpdateControls() {
    6492      base.UpdateControls();
Note: See TracChangeset for help on using the changeset viewer.