Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2017-01-09 13:12:58 +0000
committerAndrey Loskutov2017-01-13 20:56:39 +0000
commitebb2566c95427e5c7cffd5e27f1e910b0a187b17 (patch)
treef9b87db9c4ccf476dfb8c8d4b5fcfcfd3f871bbb /org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourceContainerTypeDelegate.java
parent1c1d17b82a223fb8fcc69b4883a71b8744899ccb (diff)
downloadeclipse.platform.debug-ebb2566c95427e5c7cffd5e27f1e910b0a187b17.tar.gz
eclipse.platform.debug-ebb2566c95427e5c7cffd5e27f1e910b0a187b17.tar.xz
eclipse.platform.debug-ebb2566c95427e5c7cffd5e27f1e910b0a187b17.zip
Also enabled "cleanup whitespace on save" actions for debug.ui and debug.tests bundles. Change-Id: I755b879ab1d49144a1bec3f4318dbb8b29521bb3 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
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