Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/DebugElementMementoProvider.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/DebugElementMementoProvider.java54
1 files changed, 27 insertions, 27 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/DebugElementMementoProvider.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/DebugElementMementoProvider.java
index e570ea6dd..726b8b9e6 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/DebugElementMementoProvider.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/DebugElementMementoProvider.java
@@ -48,34 +48,34 @@ public abstract class DebugElementMementoProvider extends ElementMementoProvider
return false;
}
- /**
- * Returns whether this adapter supports the given context.
- *
- * @param context
- * @return whether this adapter supports the given context
- */
- protected boolean supportsContext(IPresentationContext context) {
+ /**
+ * Returns whether this adapter supports the given context.
+ *
+ * @param context
+ * @return whether this adapter supports the given context
+ */
+ protected boolean supportsContext(IPresentationContext context) {
return supportsContextId(context.getId());
- }
+ }
- /**
- * Returns whether this adapter provides content in the specified context id.
- *
- * @param id part id
- * @return whether this adapter provides content in the specified context id
- */
- protected boolean supportsContextId(String id) {
- return true;
- }
+ /**
+ * Returns whether this adapter provides content in the specified context id.
+ *
+ * @param id part id
+ * @return whether this adapter provides content in the specified context id
+ */
+ protected boolean supportsContextId(String id) {
+ return true;
+ }
- /**
- * Returns the name of the given element to use in a memento in the given context,
- * or <code>null</code> if unsupported.
- *
- * @param element model element
- * @param context presentation context
- * @return element name or <code>null</code> if none
- * @throws CoreException
- */
- protected abstract String getElementName(Object element, IPresentationContext context) throws CoreException;
+ /**
+ * Returns the name of the given element to use in a memento in the given context,
+ * or <code>null</code> if unsupported.
+ *
+ * @param element model element
+ * @param context presentation context
+ * @return element name or <code>null</code> if none
+ * @throws CoreException
+ */
+ protected abstract String getElementName(Object element, IPresentationContext context) throws CoreException;
}

Back to the top