public class Driver extends Object
Constructor and Description |
---|
Driver() |
Modifier and Type | Method and Description |
---|---|
static String |
getBuildID() |
static void |
main(String[] args) |
static int |
run(String[] args,
PrintStream status,
PrintStream out)
Performs schema compilation and prints the status/error into the
specified PrintStream.
|
static int |
run(String[] args,
XJCListener listener)
Performs schema compilation and prints the status/error into the
specified PrintStream.
|
static void |
usage(Options opts,
boolean privateUsage)
Prints the usage screen and exits the process.
|
public static int run(String[] args, PrintStream status, PrintStream out) throws Exception
This method could be used to trigger XJC from other tools, such as Ant or IDE.
args
- specified command line parameters. If there is an error
in the parameters, BadCommandLineException
will
be thrown.status
- Status report of the compilation will be sent to this object.
Useful to update users so that they will know something is happening.
Only ignorable messages should be sent to this stream.
This parameter can be null to suppress messages.out
- Various non-ignorable output (error messages, etc)
will go to this stream.Exception
public static int run(String[] args, @NotNull XJCListener listener) throws BadCommandLineException
This method could be used to trigger XJC from other tools, such as Ant or IDE.
args
- specified command line parameters. If there is an error
in the parameters, BadCommandLineException
will
be thrown.listener
- Receives messages from XJC reporting progress/errors.BadCommandLineException
public static String getBuildID()
Copyright © 2017 JBoss by Red Hat. All rights reserved.