Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Pazderski2020-05-23 15:42:33 +0000
committerPaul Pazderski2020-06-09 16:34:42 +0000
commit643b927aa1a70d1687c2bbccceb0110d3d14b3bb (patch)
tree48865bfa01725f3880cc5f21983fe1495f9e157c /org.eclipse.debug.core/core
parentbb562cb8c1b454e7914eb8c8f9ff6cf762c710b8 (diff)
downloadeclipse.platform.debug-643b927aa1a70d1687c2bbccceb0110d3d14b3bb.tar.gz
eclipse.platform.debug-643b927aa1a70d1687c2bbccceb0110d3d14b3bb.tar.xz
eclipse.platform.debug-643b927aa1a70d1687c2bbccceb0110d3d14b3bb.zip
Bug 563505 - [Javadoc] Extension point example in IBreakpoint is wrongI20200609-1800
Change-Id: I74f53e44dc8f3e9206d711502e54d41829f9e14e Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
Diffstat (limited to 'org.eclipse.debug.core/core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java10
1 files changed, 5 insertions, 5 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 a0e5f832e..5272b58f9 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
@@ -43,12 +43,12 @@ import org.eclipse.debug.core.DebugPlugin;
* markerType="com.example.BreakpointMarker"&gt;
* &lt;/breakpoint&gt;
* &lt;/extension&gt;
- * &lt;extension point="org.eclipse.core.resources.markers"&gt;
- * &lt;marker
+ * &lt;extension
+ * point="org.eclipse.core.resources.markers"
* id="com.example.BreakpointMarker"
- * super type="org.eclipse.debug.core.breakpointMarker"
- * attribute name ="exampleAttribute"&gt;
- * &lt;/marker&gt;
+ * name="Example Breakpoint"&gt;
+ * &lt;super type="org.eclipse.debug.core.breakpointMarker"/&gt;
+ * &lt;attribute name="exampleAttribute"/&gt;
* &lt;/extension&gt;
* </pre>
* <p>

Back to the top