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

    r677 r1167  
    3333
    3434namespace HeuristicLab.Logging {
     35  /// <summary>
     36  /// Visual representation of a <see cref="PointXYChart"/>.
     37  /// </summary>
    3538  public partial class PointXYChartView : ViewBase {
    3639    private static int[] colors = new int[] {
     
    4952    };
    5053
     54    /// <summary>
     55    /// Gets or sets the chart to represent visually.
     56    /// </summary>
     57    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
     58    /// No own data storage present.</remarks>
    5159    public PointXYChart PointXYChart {
    5260      get { return (PointXYChart)base.Item; }
     
    5462    }
    5563
     64    /// <summary>
     65    /// Initializes a new instance of <see cref="PointXYChartView"/>.
     66    /// </summary>
    5667    public PointXYChartView() {
    5768      InitializeComponent();
    5869      Caption = "PointXYChart View";
    5970    }
     71    /// <summary>
     72    /// Initializes a new instance of <see cref="PointXYChartView"/> with the given
     73    /// <paramref name="pointXYChart"/>.
     74    /// </summary>
     75    /// <param name="pointXYChart">The chart to represent visually.</param>
    6076    public PointXYChartView(PointXYChart pointXYChart)
    6177      : this() {
     
    6379    }
    6480
     81    /// <summary>
     82    /// Removes the eventhandlers from the underlying <see cref="PointXYChart"/>.
     83    /// </summary>
     84    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
    6585    protected override void RemoveItemEvents() {
    6686      if (PointXYChart != null) {
     
    7090      base.RemoveItemEvents();
    7191    }
     92    /// <summary>
     93    /// Adds eventhandlers to the underlying <see cref="IOperatorGraph"/>.
     94    /// </summary>
     95    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
    7296    protected override void AddItemEvents() {
    7397      base.AddItemEvents();
     
    78102    }
    79103
     104    /// <summary>
     105    /// Updates all controls with the latest data of the model.
     106    /// </summary>
     107    /// <remarks>Calls <see cref="ViewBase.UpdateControls"/> of base class <see cref="ViewBase"/>.</remarks>
    80108    protected override void UpdateControls() {
    81109      base.UpdateControls();
Note: See TracChangeset for help on using the changeset viewer.