| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.tools.ant.ProjectComponent
org.apache.tools.ant.Task
org.apache.tools.ant.TaskAdapter
public class TaskAdapter
Uses introspection to "adapt" an arbitrary Bean which doesn't itself extend Task, but still contains an execute method and optionally a setProject method.
| Field Summary | 
|---|
| Fields inherited from class org.apache.tools.ant.Task | 
|---|
| target, taskName, taskType, wrapper | 
| Fields inherited from class org.apache.tools.ant.ProjectComponent | 
|---|
| description, location, project | 
| Constructor Summary | |
|---|---|
| TaskAdapter()No-arg constructor for reflection. | |
| TaskAdapter(java.lang.Object proxy)Constructor for given proxy. | |
| Method Summary | |
|---|---|
|  void | checkProxyClass(java.lang.Class<?> proxyClass)Check if the proxy class is a valid class to use with this adapter. | 
| static void | checkTaskClass(java.lang.Class<?> taskClass,
               Project project)Checks whether or not a class is suitable to be adapted by TaskAdapter. | 
|  void | execute()Executes the proxied task. | 
|  java.lang.Object | getProxy()Returns the target object being proxied. | 
|  void | setProxy(java.lang.Object o)Sets the target object to proxy for. | 
| Methods inherited from class org.apache.tools.ant.Task | 
|---|
| bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType | 
| Methods inherited from class org.apache.tools.ant.ProjectComponent | 
|---|
| clone, getDescription, getLocation, getProject, setDescription, setLocation, setProject | 
| Methods inherited from class java.lang.Object | 
|---|
| equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Methods inherited from interface org.apache.tools.ant.TypeAdapter | 
|---|
| getProject, setProject | 
| Constructor Detail | 
|---|
public TaskAdapter()
public TaskAdapter(java.lang.Object proxy)
myTaskContainer.addTask( new TaskAdapter(myProxy) );
proxy - The object which Ant should use as task.| Method Detail | 
|---|
public static void checkTaskClass(java.lang.Class<?> taskClass,
                                  Project project)
taskClass - Class to test for suitability.
                  Must not be null.project - Project to log warnings/errors to.
                  Must not be null.Project.checkTaskClass(Class)public void checkProxyClass(java.lang.Class<?> proxyClass)
checkProxyClass in interface TypeAdapterproxyClass - the class to check.
public void execute()
             throws BuildException
execute in class TaskBuildException - if the project could not be set
 or the method could not be executed.public void setProxy(java.lang.Object o)
setProxy in interface TypeAdaptero - The target object. Must not be null.public java.lang.Object getProxy()
getProxy in interface TypeAdapter| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||