| org.apache.cactus.integration.ant.util.AntTaskFactory
All known Subclasses: org.apache.cactus.integration.ant.util.DefaultAntTaskFactory,
AntTaskFactory | public interface AntTaskFactory (Code) | | Interface that allows random classes to use Ant tasks without needing an
explicit reference to a project, target or task.
version: $Id: AntTaskFactory.java 239003 2004-05-31 20:05:27Z vmassol $ |
Method Summary | |
Task | createTask(String theName) Returns the task that is mapped to the specified name. |
createTask | Task createTask(String theName)(Code) | | Returns the task that is mapped to the specified name.
Implementations of this interface should correctly initialize the task by
setting the name, the project and optionally the owning target.
Parameters: theName - The logical name of the task A new instance of the task mapped to the name, ornull if a corresponding task could not be created |
|
|