Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchpoint.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchpoint.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchpoint.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchpoint.java
index 8a1a244a1..6a81b8e14 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchpoint.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchpoint.java
@@ -34,7 +34,7 @@ public interface IWatchpoint extends IBreakpoint {
* @exception CoreException if unable to access the property
* on this breakpoint's underlying marker
*/
- public boolean isAccess() throws CoreException;
+ boolean isAccess() throws CoreException;
/**
* Sets whether this breakpoint will suspend execution when its associated
* variable is accessed.
@@ -43,7 +43,7 @@ public interface IWatchpoint extends IBreakpoint {
* @exception CoreException if unable to set the property on this breakpoint's
* underlying marker or if the capability is not supported
*/
- public void setAccess(boolean access) throws CoreException;
+ void setAccess(boolean access) throws CoreException;
/**
* Returns whether this watchpoint will suspend execution when its associated
* variable is written.
@@ -52,7 +52,7 @@ public interface IWatchpoint extends IBreakpoint {
* @exception CoreException if unable to access the property
* on this breakpoint's underlying marker
*/
- public boolean isModification() throws CoreException;
+ boolean isModification() throws CoreException;
/**
* Sets whether this breakpoint will suspend execution when its associated
* variable is modified.
@@ -61,7 +61,7 @@ public interface IWatchpoint extends IBreakpoint {
* @exception CoreException if unable to set the property on
* this breakpoint's underlying marker or if the capability is not supported
*/
- public void setModification(boolean modification) throws CoreException;
+ void setModification(boolean modification) throws CoreException;
/**
* Returns whether this breakpoints supports the capability to suspend
* when an associated variable is read.
@@ -69,7 +69,7 @@ public interface IWatchpoint extends IBreakpoint {
* @return whether this breakpoints supports the capability to suspend
* when an associated variable is read
*/
- public boolean supportsAccess();
+ boolean supportsAccess();
/**
* Returns whether this breakpoints supports the ability to suspend
* when an associated variable is written.
@@ -77,7 +77,7 @@ public interface IWatchpoint extends IBreakpoint {
* @return whether this breakpoints supports the ability to suspend
* when an associated variable is written
*/
- public boolean supportsModification();
+ boolean supportsModification();
}

Back to the top