Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-09-12 12:57:18 +0000
committerMarkus Keller2016-09-12 12:57:18 +0000
commit32395bb80f58933f6870d1cadf1d7d9aa988de45 (patch)
tree1678c222788211317bcd5896fc396f484a7e455d /org.eclipse.debug.core/core/org/eclipse
parent44c74be43317d3448998d75ea78cd1088533bed6 (diff)
downloadeclipse.platform.debug-32395bb80f58933f6870d1cadf1d7d9aa988de45.tar.gz
eclipse.platform.debug-32395bb80f58933f6870d1cadf1d7d9aa988de45.tar.xz
eclipse.platform.debug-32395bb80f58933f6870d1cadf1d7d9aa988de45.zip
Bug 488664: [Breakpoints] Ability to set up Breakpoint dependencyI20160912-2000I20160912-1005
fixed Javadoc error from build set reasonable Javadoc compiler settings
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
index cc30adab6..c59601c0f 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
@@ -219,7 +219,7 @@ public interface IBreakpoint extends IAdaptable {
/**
* Returns whether this breakpoint is defined as the trigger point in the
- * workspace
+ * workspace.
*
* @return whether this breakpoint is a trigger point
* @exception CoreException if unable to access the associated attribute on
@@ -232,8 +232,8 @@ public interface IBreakpoint extends IAdaptable {
/**
* Sets whether this breakpoint is to be treated as a trigger point for the
- * workspace. If it is a trigger point <code>TRIGGERPOINT</code> attribute
- * on this breakpoint's marker is set to <code>true</code>.
+ * workspace. If it is a trigger point, then the <code>TRIGGERPOINT</code>
+ * attribute on this breakpoint's marker is set to <code>true</code>.
*
* @param trigger whether this breakpoint is to be treated as trigger point
* for the workspace
@@ -249,7 +249,7 @@ public interface IBreakpoint extends IAdaptable {
* is active <code>TRIGGERPOINTACTIVE</code> attribute on this breakpoint's
* marker is set to <code>true</code>.
*
- * @param trigger whether this breakpoint is to be treated as trigger point
+ * @param active whether this breakpoint is to be treated as trigger point
* for the workspace
* @exception CoreException if unable to set the associated attribute on
* this breakpoint's underlying marker.

Back to the top