Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IEnableDisableTarget.java')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IEnableDisableTarget.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IEnableDisableTarget.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IEnableDisableTarget.java
index cf6bb71f577..a5c3f8e9f29 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IEnableDisableTarget.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IEnableDisableTarget.java
@@ -11,10 +11,10 @@
* Contributors:
* QNX Software Systems - Initial API and implementation
*******************************************************************************/
-package org.eclipse.cdt.debug.core.model;
+package org.eclipse.cdt.debug.core.model;
import org.eclipse.debug.core.DebugException;
-
+
/**
* Provides support for enable/disable actions.
*/
@@ -22,24 +22,24 @@ public interface IEnableDisableTarget {
/**
* Returns whether this object supports enable/disable operations.
- *
+ *
* @return whether this object supports enable/disable operations
*/
boolean canEnableDisable();
-
+
/**
* Returns whether this object is enabled.
- *
- * @return <code>true</code> if this obvject is enabled,
+ *
+ * @return <code>true</code> if this obvject is enabled,
* or <code>false</code> otherwise.
*/
boolean isEnabled();
/**
* Enables/disables this object
- *
+ *
* @param enabled enablement flag value
* @throws DebugException
*/
- void setEnabled( boolean enabled ) throws DebugException;
+ void setEnabled(boolean enabled) throws DebugException;
}

Back to the top