Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourceContainerTypeDelegate.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourceContainerTypeDelegate.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourceContainerTypeDelegate.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourceContainerTypeDelegate.java
index d8c944891..7b8a16648 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourceContainerTypeDelegate.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourceContainerTypeDelegate.java
@@ -23,7 +23,7 @@ import org.eclipse.core.runtime.CoreException;
* </p>
* <p>
* Clients may implement this interface.
- * </p>
+ * </p>
* @see org.eclipse.debug.core.sourcelookup.ISourceContainer
* @see org.eclipse.debug.core.sourcelookup.ISourceContainerType
* @since 3.0
@@ -33,23 +33,23 @@ public interface ISourceContainerTypeDelegate {
/**
* Creates and returns a new source container of this type
* corresponding to the given memento.
- *
+ *
* @param memento a memento for a source container of this source container type
* @return a source container corresponding to the given memento
* @exception CoreException if unable to construct a source container based
* on the given memento
*/
public ISourceContainer createSourceContainer(String memento) throws CoreException;
-
+
/**
* Constructs and returns a memento for the given source container. A memento
* can be used to reconstruct a source container.
- *
+ *
* @param container The container for which a memento should be created. The
* container must of this source container type.
* @return a memento for the source container
* @exception CoreException if unable to create a memento
*/
public String getMemento(ISourceContainer container) throws CoreException;
-
+
}

Back to the top