Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2005-12-08 20:05:54 +0000
committerDarin Wright2005-12-08 20:05:54 +0000
commit00361c1e5e0391b986e7e15a5d9d959d54b614c1 (patch)
tree5c0f306f7a5ddbda4551a583ec1d428510ba1448 /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
parent09ee76ce4854d75f93e48a19f568c9655d28c002 (diff)
downloadeclipse.platform.debug-00361c1e5e0391b986e7e15a5d9d959d54b614c1.tar.gz
eclipse.platform.debug-00361c1e5e0391b986e7e15a5d9d959d54b614c1.tar.xz
eclipse.platform.debug-00361c1e5e0391b986e7e15a5d9d959d54b614c1.zip
javadoc
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
index 5625ae039..9370936da 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
@@ -718,15 +718,16 @@ public class DebugUITools {
}
/**
- * Returns the color associated with the specified preference identifier.
+ * Returns the color associated with the specified preference identifier or
+ * <code>null</code> if none.
+ *
* @param id preference identifier of the color
* @return the color associated with the specified preference identifier
+ * or <code>null</code> if none
* @since 3.2
- * @see <code>IDebugUIConstants</cod> for available preference colors.
- * TODO: New API, needs review
+ * @see IDebugUIConstants
*/
- public static Color getPreferenceColor(String id)
- {
+ public static Color getPreferenceColor(String id) {
return DebugUIPlugin.getPreferenceColor(id);
}
}

Back to the top