/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk

« back to all changes in this revision

Viewing changes to parse/sun_sax2.java

  • Committer: Suren A. Chilingaryan
  • Date: 2009-09-23 17:13:04 UTC
  • Revision ID: csa@dside.dyndns.org-20090923171304-osvtr4zqb29h11kd
Intel, Tango, Phobos, and RapidXML parsers; Memory benchmark scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
    
15
15
    public void InitXML() {
16
16
        factory = SAXParserFactory.newInstance();
 
17
        factory.setNamespaceAware(true);
 
18
        factory.setValidating(false);
 
19
 
17
20
        handler = new SaxHandlers();
18
21
        try {
19
22
            parser=factory.newSAXParser().getXMLReader();