this.mapFactory = newMapFactory;
}
public void parse(Graph graph, GraphPerformance performance) throws GraphException {
InputStream stream = getResource();
Parser parser = new RdfXmlParser(graph.getElementFactory(), mapFactory);
long startTime = System.currentTimeMillis();
parse(stream, parser);
performance.outputResult(graph, startTime, "Testing Parsing Performance (" + PATH + "): ");
}