org.apache.tools.ant.taskdefs.optional.script

Class ScriptDef.NestedElement

public static class ScriptDef.NestedElement extends Object

Class to represent a nested element definition
Method Summary
voidsetClassName(String className)
Set the classname of the class to be used for the nested element.
voidsetName(String name)
set the tag name for this nested element
voidsetType(String type)
Set the type of this element.

Method Detail

setClassName

public void setClassName(String className)
Set the classname of the class to be used for the nested element. This specifies the class directly and is an alternative to specifying the Ant type name.

Parameters: className the name of the class to use for this nested element.

setName

public void setName(String name)
set the tag name for this nested element

Parameters: name the name of this nested element

setType

public void setType(String type)
Set the type of this element. This is the name of an Ant task or type which is to be used when this element is to be created. This is an alternative to specifying the class name directly

Parameters: type the name of an Ant type, or task, to use for this nested element.

Copyright