*/
public void parse(String systemId)
throws SAXException,
IOException
{
IXMLParser parser = this.createParser();
parser.setBuilder(this.adapter);
parser.setReader(new StdXMLReader(null, systemId));
try {
parser.parse();
this.adapter.endDocument();
} catch (IOException exception) {
throw exception;
} catch (Exception exception) {
throw new SAXException(exception);