Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/10 02:14:26 (14 years ago)
Author:
swagner
Message:

Renamed files/classes (#945).

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm.Views/3.3/GeneticAlgorithmView.cs

    r3196 r3198  
    2727  /// The base class for visual representations of items.
    2828  /// </summary>
    29   [View("SGA View")]
    30   [Content(typeof(SGA), true)]
    31   public sealed partial class SGAView : EngineAlgorithmView {
    32     public new SGA Content {
    33       get { return (SGA)base.Content; }
     29  [View("Genetic Algorithm View")]
     30  [Content(typeof(GeneticAlgorithm), true)]
     31  public sealed partial class GeneticAlgorithmView : EngineAlgorithmView {
     32    public new GeneticAlgorithm Content {
     33      get { return (GeneticAlgorithm)base.Content; }
    3434      set { base.Content = value; }
    3535    }
     
    3838    /// Initializes a new instance of <see cref="ItemBaseView"/>.
    3939    /// </summary>
    40     public SGAView() {
     40    public GeneticAlgorithmView() {
    4141      InitializeComponent();
    4242    }
     
    4545    /// </summary>
    4646    /// <param name="item">The item that should be displayed.</param>
    47     public SGAView(SGA content)
     47    public GeneticAlgorithmView(GeneticAlgorithm content)
    4848      : this() {
    4949      Content = content;
Note: See TracChangeset for help on using the changeset viewer.