Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IRegister.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IRegister.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IRegister.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IRegister.java
index d3bd7390c..35116f5ad 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IRegister.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IRegister.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,7 +12,7 @@ package org.eclipse.debug.core.model;
import org.eclipse.debug.core.DebugException;
-
+
/**
* A register is a special kind of variable that is contained
* in a register group. Each register has a name and a value.
@@ -23,17 +23,17 @@ import org.eclipse.debug.core.DebugException;
* @since 2.0
*/
public interface IRegister extends IVariable {
-
+
/**
* Returns the register group this register is contained in.
- *
+ *
* @return the register group this register is contained in
* @exception DebugException if this method fails. Reasons include:
* <ul><li>Failure communicating with the debug target. The DebugException's
* status code contains the underlying exception responsible for
* the failure.</li>
*/
- public IRegisterGroup getRegisterGroup() throws DebugException;
+ public IRegisterGroup getRegisterGroup() throws DebugException;
}

Back to the top