Package groovy.util
Class AntBuilder
java.lang.Object
groovy.lang.GroovyObjectSupport
groovy.util.BuilderSupport
groovy.util.AntBuilder
- All Implemented Interfaces:
GroovyObject
@Deprecated public class AntBuilder extends BuilderSupport
Deprecated.
Allows Ant tasks to
be used with a Groovy builder-style markup. Requires that
ant.jar
is on your classpath which will
happen automatically if you are using the Groovy distribution but will be up
to you to organize if you are embedding Groovy. If you wish to use the
optional tasks
you will need to add one or more additional jars from the ant distribution to
your classpath - see the library
dependencies for more details.-
Constructor Summary
Constructors Constructor Description AntBuilder()
Deprecated.AntBuilder(org.apache.tools.ant.Project project)
Deprecated.AntBuilder(org.apache.tools.ant.Project project, org.apache.tools.ant.Target owningTarget)
Deprecated.AntBuilder(org.apache.tools.ant.Task parentTask)
Deprecated. -
Method Summary
Modifier and Type Method Description protected static org.xml.sax.Attributes
buildAttributes(java.util.Map attributes)
Deprecated.Builds anAttributes
from aMap
protected java.lang.Object
createNode(java.lang.Object tagName)
Deprecated.protected java.lang.Object
createNode(java.lang.Object name, java.lang.Object value)
Deprecated.protected java.lang.Object
createNode(java.lang.Object name, java.util.Map attributes)
Deprecated.protected java.lang.Object
createNode(java.lang.Object name, java.util.Map attributes, java.lang.Object value)
Deprecated.protected static org.apache.tools.ant.Project
createProject()
Deprecated.protected java.lang.Object
doInvokeMethod(java.lang.String methodName, java.lang.Object name, java.lang.Object args)
Deprecated.We don't want to return the node as created increateNode(Object, Map, Object)
but the one made ready bynodeCompleted(Object, Object)
org.apache.tools.ant.Project
getAntProject()
Deprecated.org.apache.tools.ant.helper.AntXMLContext
getAntXmlContext()
Deprecated.Gets the xml context of Ant used while creating tasksorg.apache.tools.ant.Project
getProject()
Deprecated.# Gets the Ant project in which the tasks are executedboolean
isSaveStreams()
Deprecated.Whether stdin, stdout, stderr streams are saved.protected void
nodeCompleted(java.lang.Object parent, java.lang.Object node)
Deprecated.Determines, when the ANT Task that is represented by the "node" should perform.protected void
setParent(java.lang.Object parent, java.lang.Object child)
Deprecated.void
setSaveStreams(boolean saveStreams)
Deprecated.Indicates that we save stdin, stdout, stderr and replace them while AntBuilder is executing tasks with streams that funnel the normal streams into Ant's logs.protected void
setText(java.lang.Object task, java.lang.String text)
Deprecated.Methods inherited from class groovy.util.BuilderSupport
getCurrent, getName, invokeMethod, invokeMethod, postNodeCompletion, setClosureDelegate, setCurrent
Methods inherited from class groovy.lang.GroovyObjectSupport
getMetaClass, setMetaClass
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface groovy.lang.GroovyObject
getProperty, setProperty
-
Constructor Details
-
AntBuilder
public AntBuilder()Deprecated. -
AntBuilder
public AntBuilder(org.apache.tools.ant.Project project)Deprecated. -
AntBuilder
public AntBuilder(org.apache.tools.ant.Project project, org.apache.tools.ant.Target owningTarget)Deprecated. -
AntBuilder
public AntBuilder(org.apache.tools.ant.Task parentTask)Deprecated.
-
-
Method Details
-
getProject
public org.apache.tools.ant.Project getProject()Deprecated.# Gets the Ant project in which the tasks are executed- Returns:
- the project
-
getAntXmlContext
public org.apache.tools.ant.helper.AntXMLContext getAntXmlContext()Deprecated.Gets the xml context of Ant used while creating tasks- Returns:
- the Ant xml context
-
isSaveStreams
public boolean isSaveStreams()Deprecated.Whether stdin, stdout, stderr streams are saved.- Returns:
- true if we are saving streams
- See Also:
setSaveStreams(boolean)
-
setSaveStreams
public void setSaveStreams(boolean saveStreams)Deprecated.Indicates that we save stdin, stdout, stderr and replace them while AntBuilder is executing tasks with streams that funnel the normal streams into Ant's logs.- Parameters:
saveStreams
- set to false to disable this behavior
-
createProject
protected static org.apache.tools.ant.Project createProject()Deprecated.- Returns:
- Factory method to create new Project instances
-
setParent
protected void setParent(java.lang.Object parent, java.lang.Object child)Deprecated.- Specified by:
setParent
in classBuilderSupport
-
doInvokeMethod
protected java.lang.Object doInvokeMethod(java.lang.String methodName, java.lang.Object name, java.lang.Object args)Deprecated.We don't want to return the node as created increateNode(Object, Map, Object)
but the one made ready bynodeCompleted(Object, Object)
- Overrides:
doInvokeMethod
in classBuilderSupport
- See Also:
BuilderSupport.doInvokeMethod(java.lang.String, java.lang.Object, java.lang.Object)
-
nodeCompleted
protected void nodeCompleted(java.lang.Object parent, java.lang.Object node)Deprecated.Determines, when the ANT Task that is represented by the "node" should perform. Node must be an ANT Task or no "perform" is called. If node is an ANT Task, it performs right after complete construction. If node is nested in a TaskContainer, calling "perform" is delegated to that TaskContainer.- Overrides:
nodeCompleted
in classBuilderSupport
- Parameters:
parent
- note: null when node is rootnode
- the node that now has all its children applied
-
createNode
protected java.lang.Object createNode(java.lang.Object tagName)Deprecated.- Specified by:
createNode
in classBuilderSupport
-
createNode
protected java.lang.Object createNode(java.lang.Object name, java.lang.Object value)Deprecated.- Specified by:
createNode
in classBuilderSupport
-
createNode
protected java.lang.Object createNode(java.lang.Object name, java.util.Map attributes, java.lang.Object value)Deprecated.- Specified by:
createNode
in classBuilderSupport
-
buildAttributes
protected static org.xml.sax.Attributes buildAttributes(java.util.Map attributes)Deprecated.Builds anAttributes
from aMap
- Parameters:
attributes
- the attributes to wrap- Returns:
- the wrapped attributes
-
createNode
protected java.lang.Object createNode(java.lang.Object name, java.util.Map attributes)Deprecated.- Specified by:
createNode
in classBuilderSupport
-
setText
protected void setText(java.lang.Object task, java.lang.String text)Deprecated. -
getAntProject
public org.apache.tools.ant.Project getAntProject()Deprecated.
-