Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.externaltools/Ant Tools Support/org/eclipse/ui/externaltools/internal/ant/view/elements/TargetNode.java')
-rw-r--r--org.eclipse.ui.externaltools/Ant Tools Support/org/eclipse/ui/externaltools/internal/ant/view/elements/TargetNode.java85
1 files changed, 0 insertions, 85 deletions
diff --git a/org.eclipse.ui.externaltools/Ant Tools Support/org/eclipse/ui/externaltools/internal/ant/view/elements/TargetNode.java b/org.eclipse.ui.externaltools/Ant Tools Support/org/eclipse/ui/externaltools/internal/ant/view/elements/TargetNode.java
deleted file mode 100644
index 47d077eaa..000000000
--- a/org.eclipse.ui.externaltools/Ant Tools Support/org/eclipse/ui/externaltools/internal/ant/view/elements/TargetNode.java
+++ /dev/null
@@ -1,85 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.ui.externaltools.internal.ant.view.elements;
-
-import java.util.ArrayList;
-import java.util.List;
-
-
-/**
- * Representation of an ant target
- */
-public class TargetNode extends AntNode {
- private List dependencies= new ArrayList();
- private boolean isErrorNode= false;
-
- /**
- * Creates a new target node with the given parent node, name, and target
- * dependencies
- *
- * @param parent the new node's parent
- * @param name the new node's name
- * @param description the target description or <code>null</code> if the
- * target has no description
- */
- public TargetNode(String name, String description) {
- super(name);
- setDescription(description);
- }
-
- /**
- * Adds the given dependency to the list of this target's dependencies
- *
- * @param dependency the dependency to add
- */
- public void addDependency(String dependency) {
- dependencies.add(dependency);
- }
-
- /**
- * Returns the dependency node containing the names of the targets on which
- * this target depends
- *
- * @return DependencyNode the node containing the names of this target's
- * dependencies
- */
- public String[] getDependencies() {
- return (String[]) dependencies.toArray(new String[dependencies.size()]);
- }
-
- /**
- * Returns the ProjectNode containing this target. This method is equivalent
- * to calling getParent() and casting the result to a ProjectNode.
- *
- * @return ProjectNode the project containing this target
- */
- public ProjectNode getProject() {
- return (ProjectNode) getParent();
- }
-
- /**
- * Sets this target's error node state
- *
- * @param boolean whether or not an error occurred while parsing this node
- */
- public void setIsErrorNode(boolean isErrorNode) {
- this.isErrorNode= isErrorNode;
- }
-
- /**
- * Returns whether an error occurred while parsing this Ant node
- *
- * @return whether an error occurred while parsing this Ant node
- */
- public boolean isErrorNode() {
- return isErrorNode;
- }
-}

Back to the top