Parses the resource, passing SAX parse events to the handler. SDL does not (at this time) support namespaces or other constructs of XML, so only the following methods of ContentHandler will be invoked:
- {@link ContentHandler#setDocumentLocator(org.xml.sax.Locator)} - before any other calls {@link ContentHandler#startDocument()}
- {@link ContentHandler#startElement(java.lang.String,java.lang.String,java.lang.String,org.xml.sax.Attributes) - passing only the local name (namespace URL and qname will be null)}
- {@link ContentHandler#characters(char[],int,int) for literal (and extended literal) strings}
- {@link ContentHandler#endElement(java.lang.String,java.lang.String,java.lang.String) - again, with the namespaceparameters passed as null}
- {@link ContentHandler#endDocument() - last
At some future point, SDL may support more XML-like things, including names spaces.}