Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjszursze2001-05-18 17:38:41 +0000
committerjszursze2001-05-18 17:38:41 +0000
commita745315c4c819e2756e06cd24c1ce61020b9d188 (patch)
tree1dc9438b21f8871cc5cdeaff86b678ee1bb2f1ee
parent19cd39529f24abcbec99662aa40e0dac14e543c7 (diff)
downloadeclipse.platform.debug-a745315c4c819e2756e06cd24c1ce61020b9d188.tar.gz
eclipse.platform.debug-a745315c4c819e2756e06cd24c1ce61020b9d188.tar.xz
eclipse.platform.debug-a745315c4c819e2756e06cd24c1ce61020b9d188.zip
javadoc fixes 1GDW5G3
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java10
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/IDebugConstants.java4
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java4
3 files changed, 10 insertions, 8 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java
index 89a2ed266..86e36d54c 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java
@@ -65,8 +65,9 @@ public interface IBreakpointManager {
* Configures the given breakpoint's <code>MODEL_IDENTIFIER</code>
* and <code>ENABLED</code> attributes to the given values.
* This is a convenience method for
- * <code>IMarker.setAttribute(String, String)</code> and
+ * <code>IMarker.setAttribute(String, Object)</code> and
* <code>IMarker.setAttribute(String, boolean)</code>.
+ * <code>IMarker.setAttribute(String, int)</code>.
*
* @param breakpoint the breakpoint marker to configure
* @param modelIdentifier the identifier of the debug model plug-in
@@ -75,8 +76,9 @@ public interface IBreakpointManager {
* breakpoint marker
*
* @exception CoreException if setting an attribute fails
- * @see IMarker#setAttribute(String, String)
+ * @see IMarker#setAttribute(String, Object)
* @see IMarker#setAttribute(String, boolean)
+ * @see IMarker#setAttribute(String, int)
*/
void configureBreakpoint(IMarker breakpoint, String modelIdentifier, boolean enabled) throws CoreException;
@@ -85,7 +87,7 @@ public interface IBreakpointManager {
* <code>ENABLED</code>, <code>LINE_NUMBER</code>, <code>CHAR_START</code>,
* and <code>CHAR_END</code> attributes to the given values.
* This is a convenience method for
- * <code>IMarker.setAttribute(String, String)</code>,
+ * <code>IMarker.setAttribute(String, Object)</code>,
* <code>IMarker.setAttribute(String, boolean)</code>, and
* <code>IMarker.setAttribute(String, int)</code>.
*
@@ -102,7 +104,7 @@ public interface IBreakpointManager {
* character associated with the breakoint, or -1 if unknown
*
* @exception CoreException if setting an attribute fails
- * @see IMarker#setAttribute(String, String)
+ * @see IMarker#setAttribute(String, Object)
* @see IMarker#setAttribute(String, boolean)
* @see IMarker#setAttribute(String, int)
*/
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/IDebugConstants.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/IDebugConstants.java
index 15763c7d4..802262f5e 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/IDebugConstants.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/IDebugConstants.java
@@ -50,7 +50,7 @@ public interface IDebugConstants {
* This attribute is a <code>String<code> corresponding to the identifier
* of a debug model plugin a breakpoint is associated with.
*
- * @see org.eclipse.core.resources.IMarker.getAttribute(String, String)
+ * @see org.eclipse.core.resources.IMarker#getAttribute(String, String)
*/
public static final String MODEL_IDENTIFIER = "modelIdentifier";
@@ -59,7 +59,7 @@ public interface IDebugConstants {
* The attribute is a <code>boolean</code> corresponding to the
* enabled state of a breakpoint.
*
- * @see org.eclipse.core.resources.IMarker.getAttribute(String, boolean)
+ * @see org.eclipse.core.resources.IMarker#getAttribute(String, boolean)
*/
public final static String ENABLED= "enabled";
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java
index d46c44b68..e43030721 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java
@@ -91,7 +91,7 @@ public interface IDebugModelPresentation extends ILabelProvider {
* this label provider should use fully qualified type names when rendering elements.
* When set to <code>False</code>,this label provider should use simple names
* when rendering elements.
- * @see org.eclipse.debug.ui.IDebugModelPresentation.setAttribute(String, Object)
+ * @see #setAttribute(String, Object)
*/
public final static String DISPLAY_QUALIFIED_NAMES= IDebugUIConstants.PLUGIN_ID + ".displayQualifiedNames";
/**
@@ -101,7 +101,7 @@ public interface IDebugModelPresentation extends ILabelProvider {
* variables. When set to <code>False</code>, this label provider
* should not include the reference type of a variable when rendering
* variables.
- * @see org.eclipse.debug.ui.IDebugModelPresentation.setAttribute(String, Object)
+ * @see #setAttribute(String, Object)
*/
public final static String DISPLAY_VARIABLE_TYPE_NAMES= IDebugUIConstants.PLUGIN_ID + ".displayVariableTypeNames";
/**

Back to the top