Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjszursze2002-06-12 21:52:29 +0000
committerjszursze2002-06-12 21:52:29 +0000
commit18976e5fe85bd8bceb108429b967413633cf0f2e (patch)
tree704f5b09f7b48ef0952f23f1d815f38da99746ed /org.eclipse.debug.ui/ui/org/eclipse/debug
parent4121e87f8f04efb76b4ca69e2a20ea3963010306 (diff)
downloadeclipse.platform.debug-18976e5fe85bd8bceb108429b967413633cf0f2e.tar.gz
eclipse.platform.debug-18976e5fe85bd8bceb108429b967413633cf0f2e.tar.xz
eclipse.platform.debug-18976e5fe85bd8bceb108429b967413633cf0f2e.zip
cleanup JavaDoc
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java8
1 files changed, 4 insertions, 4 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 3fd6b4599..9bf654765 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
@@ -25,7 +25,7 @@ import org.eclipse.swt.graphics.Image;
* <debugModelPresentation
* id="com.example.debugModelIdentifier"
* class="com.example.ExamplePresentation"
- * detailsViewerConfiguration="com.example.ExampleSourceViewerConfiguration"
+ * detailsViewerConfiguration="com.example.ExampleSourceViewerConfiguration">
* </debugModelPresentation>
* </extension>
* </pre>
@@ -58,7 +58,7 @@ import org.eclipse.swt.graphics.Image;
* </p>
* <p>
* Clients may define new presentation attributes. For example, a client may wish
- * to define a "hexidecimal" property to display numeric values in hexidecimal. Implementations
+ * to define a "hexadecimal" property to display numeric values in hexadecimal. Implementations
* should honor the presentation attributes defined by this interface where possible,
* but do not need to honor presentation attributes defined by other clients.
* To access the debug model presentation for a debug view, clients should use
@@ -75,9 +75,9 @@ import org.eclipse.swt.graphics.Image;
public interface IDebugModelPresentation extends ILabelProvider, ISourcePresentation {
/**
* Variable type names presentation property (value <code>"org.eclipse.debug.ui.displayVariableTypeNames"</code>).
- * When <code>DISPLAY_VARIABLE_TYPE_NAMES</code> is set to <code>True</code>,
+ * When <code>DISPLAY_VARIABLE_TYPE_NAMES</code> is set to <code>true</code>,
* this label provider should include the reference type of a variable when rendering
- * variables. When set to <code>False</code>, this label provider
+ * 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)

Back to the top