Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2002-01-06 01:25:45 +0000
committerDarin Swanson2002-01-06 01:25:45 +0000
commit1f7e605197f1efb3e35b3ca7ceabe4d628f96302 (patch)
tree137f2c7570cd485df09a2996d845d1494b5cb480 /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java
parentc1bd6347f6816daf28bf36a955a09f5bb588224e (diff)
downloadeclipse.platform.debug-1f7e605197f1efb3e35b3ca7ceabe4d628f96302.tar.gz
eclipse.platform.debug-1f7e605197f1efb3e35b3ca7ceabe4d628f96302.tar.xz
eclipse.platform.debug-1f7e605197f1efb3e35b3ca7ceabe4d628f96302.zip
Bug 6088
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentation.java15
1 files changed, 1 insertions, 14 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 744c48847..3a817dff1 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
@@ -56,12 +56,8 @@ import org.eclipse.ui.IEditorInput;
* <p>
* To allow for an extensible configuration, this interface defines
* a <code>setAttribute</code> method. The debug UI plug-in defines
- * two presentation attributes:
+ * one presentation attribute:
* <ul>
- * <li><code>DISPLAY_QUALIFIED_NAMES</code> - This is a boolean attribute
- * indicating whether elements should be rendered with fully qualified names.
- * For example, a Java debug model presentation would include package names
- * when this attribute is true.</li>
* <li><code>DISPLAY_VARIABLE_TYPE_NAMES</code> - This is a boolean attribute
* indicating whether variable elements should be rendered with the declared
* type of a variable. For example, a Java debug model presentation would render
@@ -92,15 +88,6 @@ import org.eclipse.ui.IEditorInput;
*/
public interface IDebugModelPresentation extends ILabelProvider {
- /**
- * Qualified names presentation property (value <code>"org.eclipse.debug.ui.displayQualifiedNames"</code>).
- * When <code>DISPLAY_QUALIFIED_NAMES</code> is set to <code>True</code>,
- * 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)
- */
- public final static String DISPLAY_QUALIFIED_NAMES= IDebugUIConstants.PLUGIN_ID + ".displayQualifiedNames"; //$NON-NLS-1$
/**
* 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>,

Back to the top