// -------------------------------------------------------------------------
public Schema getSchema() throws IOException, IncorrectSchemaException, SAXException {
if (schema == null) {
SchemaFactory factory = getSchemaFactory();
schema = factory.createSchema(getInputSource());
}
return schema;
}
public void setSchema(Schema schema) {