Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/03/12 11:22:21 (12 years ago)
Author:
gkronber
Message:

#1081: merged r7214:7266 from trunk into time series branch.

Location:
branches/HeuristicLab.TimeSeries
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.TimeSeries

  • branches/HeuristicLab.TimeSeries/HeuristicLab.Optimization.Views/3.3/ResultView.cs

    r5896 r7268  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2727
    2828namespace HeuristicLab.Optimization.Views {
    29   /// <summary>
    30   /// The visual representation of a <see cref="Variable"/>.
    31   /// </summary>
    3229  [View("Result View")]
    3330  [Content(typeof(Result), false)]
    3431  [Content(typeof(IResult), false)]
    3532  public sealed partial class ResultView : NamedItemView {
    36     /// <summary>
    37     /// Gets or sets the variable to represent visually.
    38     /// </summary>
    39     /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
    40     /// No own data storage present.</remarks>
    4133    public new IResult Content {
    4234      get { return (IResult)base.Content; }
     
    4941    }
    5042
    51     /// <summary>
    52     /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable".
    53     /// </summary>
    5443    public ResultView() {
    5544      InitializeComponent();
    5645    }
    5746
    58     /// <summary>
    59     /// Removes the eventhandlers from the underlying <see cref="Variable"/>.
    60     /// </summary>
    61     /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
    6247    protected override void DeregisterContentEvents() {
    6348      Content.ValueChanged -= new EventHandler(Content_ValueChanged);
    6449      base.DeregisterContentEvents();
    6550    }
    66 
    67     /// <summary>
    68     /// Adds eventhandlers to the underlying <see cref="Variable"/>.
    69     /// </summary>
    70     /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
    7151    protected override void RegisterContentEvents() {
    7252      base.RegisterContentEvents();
Note: See TracChangeset for help on using the changeset viewer.