public class Compile extends Object
| Constructor and Description |
|---|
Compile()
Default constructor.
|
Compile(boolean verbose1,
boolean verbose2,
boolean load,
boolean verify,
boolean track,
boolean over)
Constructor with settings specified.
|
| Modifier and Type | Method and Description |
|---|---|
void |
compile(String[] paths,
String[] files)
Compile a set of bindings using supplied classpaths.
|
static void |
main(String[] args)
Main method for running compiler as application.
|
void |
setLoad(boolean load)
Set control flag for test loading generated/modified classes.
|
void |
setSkipValidate(boolean skip)
Set control flag for skipping binding validation.
|
void |
setVerbose(boolean verbose)
Set control flag for verbose processing reports.
|
void |
setVerify(boolean verify)
Set control flag for verifying generated/modified classes with BCEL.
|
public Compile()
public Compile(boolean verbose1,
boolean verbose2,
boolean load,
boolean verify,
boolean track,
boolean over)
verbose1 - report binding details and resultsverbose2 - report second pass binding detailsload - test load modified classes to validateverify - use BCEL validation of modified classestrack - keep tracking information for source of branch generationover - override code generation error handlingpublic void setLoad(boolean load)
load - test load generated/modified classes flagpublic void setVerbose(boolean verbose)
verbose - report verbose information in processing bindings flagpublic void setVerify(boolean verify)
verify - use BCEL verification for generated/modified classes flagpublic void setSkipValidate(boolean skip)
skip - test load generated/modified classes flagpublic void compile(String[] paths, String[] files) throws org.jibx.runtime.JiBXException
paths - list of paths for loading classesfiles - list of binding definition filesorg.jibx.runtime.JiBXException - if error in processing the binding definitionpublic static void main(String[] args)
args - command line argumentsCopyright © 2005–2016 jibx.org. All rights reserved.