Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INavigationLocationProvider.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INavigationLocationProvider.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INavigationLocationProvider.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INavigationLocationProvider.java
index 91ed8bf9dce..96bbcccd7f7 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INavigationLocationProvider.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INavigationLocationProvider.java
@@ -15,25 +15,25 @@
package org.eclipse.ui;
/**
- * Should be implemented by editors that wish to contribute to the
- * navigation history. The message <code>createNavigationLocation</code>
- * will be sent when a new location is marked in the history.
+ * Should be implemented by editors that wish to contribute to the navigation
+ * history. The message <code>createNavigationLocation</code> will be sent when
+ * a new location is marked in the history.
*
* @since 2.1
*/
public interface INavigationLocationProvider {
- /**
- * Creates an empty navigation location. The message <code>restoreState</code>
- * will be sent to the location to restore its state.
- *
- * @return INavigationLocation
- */
- INavigationLocation createEmptyNavigationLocation();
+ /**
+ * Creates an empty navigation location. The message <code>restoreState</code>
+ * will be sent to the location to restore its state.
+ *
+ * @return INavigationLocation
+ */
+ INavigationLocation createEmptyNavigationLocation();
- /**
- * Creates a navigation location describing the current state.
- *
- * @return INavigationLocation
- */
- INavigationLocation createNavigationLocation();
+ /**
+ * Creates a navigation location describing the current state.
+ *
+ * @return INavigationLocation
+ */
+ INavigationLocation createNavigationLocation();
}

Back to the top