Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/10 02:50:19 (14 years ago)
Author:
swagner
Message:

Renamed TSP to TravelingSalesmanProblem and TSPView to TravelingSalesmanProblemView (#924).

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views/3.3/TravelingSalesmanProblemView.cs

    r3158 r3159  
    3030  /// The base class for visual representations of items.
    3131  /// </summary>
    32   [View("TSP View")]
    33   [Content(typeof(TSP), true)]
    34   public sealed partial class TSPView : NamedItemView {
     32  [View("Traveling Salesman Problem View")]
     33  [Content(typeof(TravelingSalesmanProblem), true)]
     34  public sealed partial class TravelingSalesmanProblemView : NamedItemView {
    3535    private TSPLIBImportDialog tsplibImportDialog;
    3636
    37     public new TSP Content {
    38       get { return (TSP)base.Content; }
     37    public new TravelingSalesmanProblem Content {
     38      get { return (TravelingSalesmanProblem)base.Content; }
    3939      set { base.Content = value; }
    4040    }
     
    4343    /// Initializes a new instance of <see cref="ItemBaseView"/>.
    4444    /// </summary>
    45     public TSPView() {
     45    public TravelingSalesmanProblemView() {
    4646      InitializeComponent();
    4747    }
     
    5050    /// </summary>
    5151    /// <param name="item">The item that should be displayed.</param>
    52     public TSPView(TSP content)
     52    public TravelingSalesmanProblemView(TravelingSalesmanProblem content)
    5353      : this() {
    5454      Content = content;
Note: See TracChangeset for help on using the changeset viewer.