Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ef4e69e16237d1255b3da61235e4383e1681d9e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation and others.
 * 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
 *******************************************************************************/
package org.eclipse.debug.internal.ui.viewers;

import org.eclipse.jface.viewers.TreePath;
import org.eclipse.swt.graphics.Image;


/**
 * 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
	 */
	String[] getLabels();

	/**
	 * Returns the images for the element.
	 *
	 * @return
	 */
	Image[] getImages();

	/**
	 * Returns the element the label is for.
	 *
	 * @return
	 */
	Object getElement();

	/**
	 * Returns the path to the element in the tree.
	 *
	 * @return
	 */
	TreePath getTreePath();

	/**
	 * Returns this element's depth in the tree.
	 *
	 * @return
	 */
	int getDepth();
}

Back to the top