Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjszursze2001-05-18 15:02:36 +0000
committerjszursze2001-05-18 15:02:36 +0000
commit19cd39529f24abcbec99662aa40e0dac14e543c7 (patch)
treeb0b8154e036167ebced8b0bcf8ecb4f71ed1ea81 /org.eclipse.debug.ui/ui/org/eclipse/debug
parentc4affb9880e44cbef82348c1ae9fd0e8aaf42f8a (diff)
downloadeclipse.platform.debug-19cd39529f24abcbec99662aa40e0dac14e543c7.tar.gz
eclipse.platform.debug-19cd39529f24abcbec99662aa40e0dac14e543c7.tar.xz
eclipse.platform.debug-19cd39529f24abcbec99662aa40e0dac14e543c7.zip
fix javadoc problems 1GDW5TD
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java4
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugViewAdapter.java2
2 files changed, 3 insertions, 3 deletions
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 585f9aa66..d46c44b68 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 setAttribute(String, Object)
+ * @see org.eclipse.debug.ui.IDebugModelPresentation.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 setAttribute(String, Object)
+ * @see org.eclipse.debug.ui.IDebugModelPresentation.setAttribute(String, Object)
*/
public final static String DISPLAY_VARIABLE_TYPE_NAMES= IDebugUIConstants.PLUGIN_ID + ".displayVariableTypeNames";
/**
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugViewAdapter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugViewAdapter.java
index 3b346965e..e6d96d655 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugViewAdapter.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugViewAdapter.java
@@ -30,7 +30,7 @@ import org.eclipse.jface.viewers.StructuredViewer;
* from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
* (repeatedly) as the API evolves.
* </p>
- * @see IAdaptable
+ * @see org.eclipse.core.runtime.IAdaptable
* @see IDebugModelPresentation
*/

Back to the top