Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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