XJC |
||
The XJC is provided as a tool in JAXB. The compiler maps a given schema declaration into corresponding Java interfaces and classes that implement the interfaces. Typically, every complexType defined in the schema is mapped to a Java class. For example, refer to the schema in the code snippet on the right. When you run the XJC on this schema, the compiler generates interfaces such as Customer and CustomerType. The compiler also generates classes such as CustomerImpl.java and CustomerTypeImpl.java. The generated classes represent the entire schema and contain code for unmarshalling. |
|
|
Click the Next button to continue. |