Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2010-01-05 19:01:16 +0000
committerDarin Wright2010-01-05 19:01:16 +0000
commit71cfe06995f241237b808789fd6826b6dab539ab (patch)
treec991c8630ba70fbb026062b9180335a47a81ae78 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model
parentb9ab1e9d8a1fffb548381d1c5f2babc748979e42 (diff)
downloadeclipse.platform.debug-71cfe06995f241237b808789fd6826b6dab539ab.tar.gz
eclipse.platform.debug-71cfe06995f241237b808789fd6826b6dab539ab.tar.xz
eclipse.platform.debug-71cfe06995f241237b808789fd6826b6dab539ab.zip
javadoc exceptions to avoid compiler warnings
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/ElementLabelProvider.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/ElementLabelProvider.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/ElementLabelProvider.java
index c4f86518d..1a0d5e68e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/ElementLabelProvider.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/ElementLabelProvider.java
@@ -231,6 +231,7 @@ public abstract class ElementLabelProvider implements IElementLabelProvider {
* @param presentationContext
* @param columnId
* @return font information or <code>null</code>
+ * @throws CoreException
*/
protected FontData getFontData(TreePath elementPath, IPresentationContext presentationContext, String columnId) throws CoreException {
return null;
@@ -242,6 +243,7 @@ public abstract class ElementLabelProvider implements IElementLabelProvider {
* @param presentationContext
* @param columnId
* @return color or <code>null</code>
+ * @throws CoreException
*/
protected RGB getForeground(TreePath elementPath, IPresentationContext presentationContext, String columnId) throws CoreException {
return null;
@@ -253,6 +255,7 @@ public abstract class ElementLabelProvider implements IElementLabelProvider {
* @param presentationContext
* @param columnId
* @return color or <code>null</code>
+ * @throws CoreException
*/
protected RGB getBackground(TreePath elementPath, IPresentationContext presentationContext, String columnId) throws CoreException {
return null;
@@ -264,6 +267,7 @@ public abstract class ElementLabelProvider implements IElementLabelProvider {
* @param presentationContext
* @param columnId
* @return image descriptor or <code>null</code>
+ * @throws CoreException
*/
protected ImageDescriptor getImageDescriptor(TreePath elementPath, IPresentationContext presentationContext, String columnId) throws CoreException {
return null;

Back to the top