Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugModelProvider.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugModelProvider.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugModelProvider.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugModelProvider.java
index 49fd1777a..92703d4a3 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugModelProvider.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugModelProvider.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
*******************************************************************************/
@@ -12,24 +12,24 @@ package org.eclipse.debug.core.model;
/**
* A debug model provider provides debug model identifiers.
- * This interface is used as an adapter to determine what
- * debug models are associated with an adaptable object.
+ * This interface is used as an adapter to determine what
+ * debug models are associated with an adaptable object.
* Generally, when debugging one language, only one debug
* model is associated with a debug element. However,
* a debug model that provides cross language debugging
- * may represent several debug models.
+ * may represent several debug models.
* <p>
* Clients are intended to implement this interface.
* </p>
* @since 3.0
*/
public interface IDebugModelProvider {
-
+
/**
* Returns a collection of debug model identifiers.
- *
+ *
* @return a collection of debug model identifiers
*/
public String[] getModelIdentifiers();
-
+
}

Back to the top