Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java
index a6defd6c5..2401a8bcd 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugElement.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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -30,7 +30,7 @@ import org.eclipse.debug.core.ILaunch;
* Debug elements are language independent. However, language specific
* features can be made available via the adapter mechanism provided by
* <code>IAdaptable</code>, or by extending the debug element interfaces.
- * A debug model is responsible for declaring any special adapters
+ * A debug model is responsible for declaring any special adapters
* its debug elements implement.
* </p>
* <p>
@@ -38,7 +38,7 @@ import org.eclipse.debug.core.ILaunch;
* </p>
*/
public interface IDebugElement extends IAdaptable {
-
+
/**
* Returns the unique identifier of the plug-in
* this debug element originated from.
@@ -48,13 +48,13 @@ public interface IDebugElement extends IAdaptable {
public String getModelIdentifier();
/**
* Returns the debug target this element is contained in.
- *
+ *
* @return the debug target this element is contained in
*/
public IDebugTarget getDebugTarget();
/**
* Returns the launch this element is contained in.
- *
+ *
* @return the launch this element is contained in
*/
public ILaunch getLaunch();

Back to the top