Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/breadcrumb/IBreadcrumbDropDownSite.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/breadcrumb/IBreadcrumbDropDownSite.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/breadcrumb/IBreadcrumbDropDownSite.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/breadcrumb/IBreadcrumbDropDownSite.java
index adea89dfd..eb1004a7b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/breadcrumb/IBreadcrumbDropDownSite.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/breadcrumb/IBreadcrumbDropDownSite.java
@@ -4,7 +4,7 @@
* 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:
* Wind River Systems - initial API and implementation
*******************************************************************************/
@@ -14,26 +14,26 @@ import org.eclipse.jface.viewers.ISelection;
/**
* Interface allowing breadcrumb drop-down implementors to communicate with their
- * containing breadcrumb.
- *
+ * containing breadcrumb.
+ *
* @since 3.5
*/
public interface IBreadcrumbDropDownSite {
-
+
/**
* Notifies the breadcrumb that the given selection was made in the drop-down
* viewer.
* @param selection Selection to set to breadcrumb.
*/
public void notifySelection(ISelection selection);
-
+
/**
* Notifies the breadcrumb that the drop-down viewer should be closed.
*/
public void close();
-
+
/**
- * Notifies the breadcrumb that the drop-down viewer's contents have
+ * Notifies the breadcrumb that the drop-down viewer's contents have
* changed and viewer shell should be adjusted for the new size.
*/
public void updateSize();

Back to the top