*/
protected SchemaElement readSchema(ValidationContext vctx,
ISchemaResolver resolver) throws JiBXException, IOException {
IBindingFactory factory = BindingDirectory.getFactory
(SchemaUtils.XS_PREFIX_BINDING, SchemaElement.class);
IUnmarshallingContext uctx = factory.createUnmarshallingContext();
uctx.setDocument(resolver.getContent(), resolver.getId(), null);
uctx.setUserContext(vctx);
SchemaElement schema = new SchemaElement();
((IUnmarshallable)schema).unmarshal(uctx);
return schema;