Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ILabelResult.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ILabelResult.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ILabelResult.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ILabelResult.java
index cde762d8e..6d0db0337 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ILabelResult.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ILabelResult.java
@@ -4,7 +4,7 @@
* 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
*******************************************************************************/
@@ -15,43 +15,43 @@ import org.eclipse.swt.graphics.Image;
/**
- * Results of collecting an asynchronous label in a tree.
- *
+ * Results of collecting an asynchronous label in a tree.
+ *
* @since 3.2
*/
public interface ILabelResult {
/**
* Returns the labels for the element. One for each column.
- *
+ *
* @return
*/
public String[] getLabels();
-
+
/**
* Returns the images for the element.
- *
+ *
* @return
*/
public Image[] getImages();
-
+
/**
* Returns the element the label is for.
- *
+ *
* @return
*/
public Object getElement();
-
+
/**
* Returns the path to the element in the tree.
- *
+ *
* @return
*/
public TreePath getTreePath();
-
+
/**
* Returns this element's depth in the tree.
- *
+ *
* @return
*/
public int getDepth();

Back to the top