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.java22
1 files changed, 11 insertions, 11 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 eb8a93f51..967d5ac5f 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
@@ -1,10 +1,10 @@
/*******************************************************************************
* Copyright (c) 2005, 2006 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
+ * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -27,35 +27,35 @@ public interface ILabelRequestMonitor extends IStatusMonitor {
/**
* Sets the text of the label. Cannot be <code>null</code>.
- *
+ *
* @param text
*/
public void setLabels(String[] text);
-
+
/**
* Sets the font of the label.
- *
+ *
* @param fontData
*/
public void setFontDatas(FontData[] fontData);
-
+
/**
* Sets the image of the label.
- *
+ *
* @param image
*/
public void setImageDescriptors(ImageDescriptor[] image);
-
+
/**
* Sets the foreground color of the label.
- *
+ *
* @param foreground
*/
public void setForegrounds(RGB[] foreground);
-
+
/**
* Sets the background color of the label.
- *
+ *
* @param background
*/
public void setBackgrounds(RGB[] background);

Back to the top