Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6497c23bc545120de8e605ba4e798df48d474e05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*******************************************************************************
 * Copyright (c) 2001, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.wst.ws.internal.explorer.platform.perspective;

// A class used to represent a brower breadcrumb. Each breadcrumb encapsulates
// a navigated URL.
public class BreadCrumb
{
  private int perspectiveId_;
  private String url_;

  public BreadCrumb(int perspectiveId,String url)
  {
    perspectiveId_ = perspectiveId;
    url_ = url;
  }

  /**
  * Get the URL associated with this breadcrumb.
  * @return String The URL.
  */
  public String getURL()
  {
    return url_;
  }

  /**
  * Get the ID of the perspective where this breadcrumb belongs.
  * @return int The perspectiveID as defined in ActionInputs.
  */
  public int getPerspectiveId()
  {
    return perspectiveId_;
  }

  /**
  * Test equality between this breadcrumb and another. Both the URLs and perspective
  * IDs must be equal for two breadcrumbs to be equal.
  * @param BreadCrumb A breadcrumb.
  * @return boolean The result of the equality test.
  */
  public boolean equals(BreadCrumb b)
  {
    return ((url_.equals(b.getURL())) && (perspectiveId_ == b.getPerspectiveId()));
  }
}

Back to the top