Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ccfcba566de8ab0f14e7b1eeef2f6ab57374504c (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * 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;


/**
 * @since 3.2
 *
 */
class LabelResult extends LabelRequestMonitor implements ILabelResult {

	public LabelResult(ModelNode node, AsynchronousModel model) {
		super(node, model);
	}

	@Override
	protected synchronized void scheduleViewerUpdate(long ms) {
		notifyAll();
	}

	@Override
	public synchronized boolean isDone() {
		return super.isDone();
	}

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.viewers.ILabelResult#getElement()
	 */
	@Override
	public Object getElement() {
		return getNode().getElement();
	}

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.viewers.ILabelResult#getImages()
	 */
	@Override
	public Image[] getImages() {
		return getModel().getViewer().getImages(getImageDescriptors());
	}

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.viewers.ILabelResult#getLabels()
	 */
	@Override
	public String[] getLabels() {
		return super.getLabels();
	}

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.viewers.ILabelResult#getTreePath()
	 */
	@Override
	public TreePath getTreePath() {
		return getNode().getTreePath();
	}

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.viewers.ILabelResult#getDepth()
	 */
	@Override
	public int getDepth() {
		int level = 0;
		ModelNode node = getNode().getParentNode();
		while (node != null) {
			node = node.getParentNode();
			level++;
		}
		return level;
	}


}

Back to the top