public interface ArgumentProcessor
Arguments supported by third party code should not conflict with Ant core ones. It is then recommended to chose specific 'enough' argument name, avoiding for instance one letter arguments. By the way, if there any conflict, Ant will take precedence.
Modifier and Type | Method and Description |
---|---|
boolean |
handleArg(java.util.List<java.lang.String> args)
If some arguments matched with
readArguments(String[], int) ,
this method is called after all arguments were parsed. |
boolean |
handleArg(Project project,
java.util.List<java.lang.String> arg)
Handle the arguments with
readArguments(String[], int) , just
after the project being configured. |
void |
prepareConfigure(Project project,
java.util.List<java.lang.String> args)
If some arguments matched with
readArguments(String[], int) ,
this method is called just before the project being configured |
void |
printUsage(java.io.PrintStream writer)
Print the usage of the supported arguments
|
int |
readArguments(java.lang.String[] args,
int pos)
Read the arguments from the command line at the specified position
|
int readArguments(java.lang.String[] args, int pos)
If the argument is not supported, returns -1. Else, the position of the first argument not supported.
args
- String[]pos
- intboolean handleArg(java.util.List<java.lang.String> args)
readArguments(String[], int)
,
this method is called after all arguments were parsed. Returns
true
if Ant should stop there, ie the build file not parsed
and the project should not be executed.args
- List<String>void prepareConfigure(Project project, java.util.List<java.lang.String> args)
readArguments(String[], int)
,
this method is called just before the project being configuredproject
- Projectargs
- List<String>boolean handleArg(Project project, java.util.List<java.lang.String> arg)
readArguments(String[], int)
, just
after the project being configured. Returns true
if Ant
should stop there, ie the build file not parsed and the project should
not be executed.project
- Projectarg
- List<String>void printUsage(java.io.PrintStream writer)
writer
- PrintStreamMain.printUsage()