* This way of reading XML Schema can be useful when XML Schema is
* not available as a stand-alone XML document.
* For example, one can feed XML Schema inside a WSDL document.
*/
public ContentHandler getParserHandler() {
NGCCRuntimeEx runtime = context.newNGCCRuntime();
Schema s = new Schema(runtime,false,null);
runtime.setRootHandler(s);
return runtime;
}