rem compile XSD schema with JAXB

cd E:\

rem xjc.exe comes with the JDK
rem specify -p (package) then the package name where you want the generated code to go, then your xsd file.

"%JDK64\bin\xjc.exe" -p com.mindprod.htmlreflow.config E:\com\mindprod\htmlreflow\htmlreflow.xsd

rem The resulting generated Java source classes will go in E:\com\mindprod\htmlreflow\config
rem -30-