public class TaskAdapter extends Task implements TypeAdapter
Constructor and Description |
---|
TaskAdapter()
No-arg constructor for reflection.
|
TaskAdapter(Object proxy)
Constructor for given proxy.
|
Modifier and Type | Method and Description |
---|---|
void |
checkProxyClass(Class<?> proxyClass)
Check if the proxy class is a valid class to use
with this adapter.
|
static void |
checkTaskClass(Class<?> taskClass,
Project project)
Checks whether or not a class is suitable to be adapted by TaskAdapter.
|
void |
execute()
Executes the proxied task.
|
Object |
getProxy()
Returns the target object being proxied.
|
void |
setProxy(Object o)
Sets the target object to proxy for.
|
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
clone, getDescription, getLocation, getProject, setDescription, setLocation, setProject
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getProject, setProject
public TaskAdapter()
public TaskAdapter(Object proxy)
myTaskContainer.addTask( new TaskAdapter(myProxy) );
proxy
- The object which Ant should use as task.public void checkProxyClass(Class<?> proxyClass)
checkProxyClass
in interface TypeAdapter
proxyClass
- the class to check.public static void checkTaskClass(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 execute() throws BuildException
execute
in class Task
BuildException
- if the project could not be set
or the method could not be executed.public Object getProxy()
getProxy
in interface TypeAdapter
public void setProxy(Object o)
setProxy
in interface TypeAdapter
o
- The target object. Must not be null
.