Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8a34c9488ba1a1ea71825882e6843ce6361f1478 (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
/*******************************************************************************
 * Copyright (c) 2006, 2013 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.views.memory.renderings;

import java.util.ArrayList;

import org.eclipse.debug.internal.ui.viewers.AsynchronousTableModel;
import org.eclipse.debug.internal.ui.viewers.AsynchronousViewer;
import org.eclipse.debug.internal.ui.viewers.ModelNode;

abstract public class AbstractVirtualContentTableModel extends AsynchronousTableModel {

	public AbstractVirtualContentTableModel(AsynchronousViewer viewer) {
		super(viewer);
	}

	public Object[] getElements() {
		ModelNode[] nodes = getNodes(getRootNode().getElement());
		ArrayList<Object> result = new ArrayList<>();
		if (nodes != null) {
			for (int i = 0; i < nodes.length; i++) {
				ModelNode[] children = nodes[i].getChildrenNodes();
				if (children != null) {
					for (int j = 0; j < children.length; j++) {
						result.add(children[j].getElement());
					}
				}
			}

			return result.toArray();
		}
		return new Object[0];
	}

	public Object getElement(int idx) {
		Object[] elements = getElements();
		if (idx >= 0 && idx < elements.length) {
			return elements[idx];
		}

		return null;
	}

	public int indexOfElement(Object element) {
		Object[] elements = getElements();

		for (int i = 0; i < elements.length; i++) {
			if (elements[i] == element) {
				return i;
			}
		}
		return -1;
	}

	abstract public int indexOfKey(Object key);

	abstract public int columnOf(Object element, Object key);

	abstract public Object getKey(int idx);

	abstract public Object getKey(Object element);

	abstract public Object getKey(int idx, int col);

	public void handleViewerChanged() {

	}

}

Back to the top