Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java50
1 files changed, 25 insertions, 25 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java
index 0ff3ffd8b..a25a8d1a1 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java
@@ -33,34 +33,34 @@ public interface ILabelRequestMonitor extends IStatusMonitor {
*
* @param text
*/
- void setLabels(String[] text);
+ void setLabels(String[] text);
- /**
- * Sets the font of the label.
- *
- * @param fontData
- */
- void setFontDatas(FontData[] fontData);
+ /**
+ * Sets the font of the label.
+ *
+ * @param fontData
+ */
+ void setFontDatas(FontData[] fontData);
- /**
- * Sets the image of the label.
- *
- * @param image
- */
- void setImageDescriptors(ImageDescriptor[] image);
+ /**
+ * Sets the image of the label.
+ *
+ * @param image
+ */
+ void setImageDescriptors(ImageDescriptor[] image);
- /**
- * Sets the foreground color of the label.
- *
- * @param foreground
- */
- void setForegrounds(RGB[] foreground);
+ /**
+ * Sets the foreground color of the label.
+ *
+ * @param foreground
+ */
+ void setForegrounds(RGB[] foreground);
- /**
- * Sets the background color of the label.
- *
- * @param background
- */
- void setBackgrounds(RGB[] background);
+ /**
+ * Sets the background color of the label.
+ *
+ * @param background
+ */
+ void setBackgrounds(RGB[] background);
}

Back to the top