Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e28d5968d3191f3a0df5df90376fb3006ea0056a (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
/*******************************************************************************
 * Copyright (c) 2009, 2015 Red Hat Inc.
 *
 * 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:
 *     Red Hat Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.autotools.ui.properties;

import java.util.ArrayList;
import java.util.List;

public class ToolListElement {
	
	private List<ToolListElement> children;
	private ToolListElement parent;
	private String name;
	private int type;
	
	public ToolListElement(String name, int type) {
		this.name = name;
		this.type = type;
		this.children = new ArrayList<>();
	}
	
	public void setParent(ToolListElement p) {
		parent = p;
	}
	
	public ToolListElement getParent() {
		return parent;
	}
	
	public String getName() {
		return name;
	}
	
	public int getType() {
		return type;
	}
	
	public void addChild(ToolListElement e) {
		children.add(e);
		e.setParent(this);
	}
	
	public boolean hasChildren() {
		return children.size() > 0;
	}
	
	public Object[] getChildren() {
		return children.toArray();
	}

}

Back to the top