public RdfXmlParser(GraphElementFactory newValueFactory, ParserBlankNodeFactory newBNodeFactory) {
try {
init(newValueFactory, newBNodeFactory);
// Initialize the statement handler to empty.
setStatementHandler(new StatementHandler() {
public void handleStatement(SubjectNode subject, PredicateNode predicate, ObjectNode object) {
}
});
} catch (TransformerConfigurationException tce) {
throw new RuntimeException(tce);