Provides factory and interface of Java2Schema tool.

In case that you need an API support of WASP Java2Schema tool, you can use this package.

Example:

        // get a tool instance via static factory
        Java2Schema java2Schema = Java2SchemaFactory.newJava2Schema();

        //set package mapping
        java2Schema.setPackageMapping(packageNamespaceMap);

        // call Java2Schema to process and generate the XML Schema files
        QName qName = java2Schema.mapJavaType(MyClass.class);
    

@since WASP 4.5 @see org.idoox.wasp.tools.java2schema.Java2SchemaFactory @see org.idoox.wasp.tools.java2schema.Java2Schema