com.sun.msv.reader.xmlschema.MultiSchemaReader Maven / Gradle / Ivy
/*
* @(#)$Id: MultiSchemaReader.java,v 1.4 2003/09/04 20:30:36 kohsuke Exp $
*
* Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
* Use is subject to license terms.
*
*/
package com.sun.msv.reader.xmlschema;
import org.xml.sax.InputSource;
import org.xml.sax.helpers.LocatorImpl;
import com.sun.msv.grammar.xmlschema.XMLSchemaGrammar;
import com.sun.msv.util.Util;
/**
* An utility class that
* reads multiple XML Schema documents and combines them into one schema object.
*
* Usage
*
* Creates a new instance of {@link XMLSchemaReader}, then pass it to the
* constructor of this class. Then call the parse method as many times as you want.
* Finally, call the finish method.
*
* The parsed grammar can be obtained from the underlying XMLSchemaReader object.
*
*
* @author Kohsuke KAWAGUCHI
*/
public class MultiSchemaReader
{
public MultiSchemaReader( XMLSchemaReader _reader ) {
this.reader = _reader;
reader.setDocumentLocator(new LocatorImpl());
}
private final XMLSchemaReader reader;
private boolean finalized = false;
/**
* @deprecated
*/
public final XMLSchemaReader getReader() { return reader; }
/**
* Obtains the parsed grammar.
*/
public final XMLSchemaGrammar getResult() {
finish();
return reader.getResult();
}
public final void parse( String source ) {
parse(Util.getInputSource(source));
}
/**
* Parses an additional schema.
*
* The caller can call this method many times to parse
* multiple schemas.
*
* If possible, the caller should set the system Id to the InputSource.
*/
public void parse( InputSource is ) {
reader.switchSource( is,
new RootIncludedSchemaState(
reader.sfactory.schemaHead(null)) );
}
/**
* This method should be called when all the schemas are parsed.
*/
public void finish() {
if( !finalized ) {
finalized = true;
reader.wrapUp();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy