Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/ToolListElement.java')
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/ToolListElement.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/ToolListElement.java b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/ToolListElement.java
new file mode 100644
index 00000000000..0b37affaff6
--- /dev/null
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/ToolListElement.java
@@ -0,0 +1,57 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Red Hat Inc.
+ * 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:
+ * Red Hat Inc. - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.cdt.internal.autotools.ui.properties;
+
+import java.util.ArrayList;
+
+public class ToolListElement {
+
+ private ArrayList<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<ToolListElement>();
+ }
+
+ 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