src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/DXMLPrinter.java

Print this page

        

*** 20,53 **** * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! /* ! * Copyright (C) 2004-2011 ! * ! * Permission is hereby granted, free of charge, to any person obtaining a copy ! * of this software and associated documentation files (the "Software"), to deal ! * in the Software without restriction, including without limitation the rights ! * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ! * copies of the Software, and to permit persons to whom the Software is ! * furnished to do so, subject to the following conditions: ! * ! * The above copyright notice and this permission notice shall be included in ! * all copies or substantial portions of the Software. ! * ! * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ! * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ! * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ! * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ! * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ! * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ! * THE SOFTWARE. ! */ package com.sun.xml.internal.rngom.digested; - import java.io.File; import java.io.FileOutputStream; import java.io.OutputStream; import java.util.List; import javax.xml.namespace.QName; --- 20,32 ---- * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package com.sun.xml.internal.rngom.digested; import java.io.FileOutputStream; import java.io.OutputStream; import java.util.List; import javax.xml.namespace.QName;
*** 531,552 **** public static void main(String[] args) throws Exception { Parseable p; ErrorHandler eh = new DefaultHandler() { - @Override public void error(SAXParseException e) throws SAXException { throw e; } }; // the error handler passed to Parseable will receive parsing errors. - String path = new File(args[0]).toURL().toString(); if (args[0].endsWith(".rng")) { ! p = new SAXParseable(new InputSource(path), eh); } else { ! p = new CompactParseable(new InputSource(path), eh); } // the error handler passed to CheckingSchemaBuilder will receive additional // errors found during the RELAX NG restrictions check. // typically you'd want to pass in the same error handler, --- 510,529 ---- public static void main(String[] args) throws Exception { Parseable p; ErrorHandler eh = new DefaultHandler() { public void error(SAXParseException e) throws SAXException { throw e; } }; // the error handler passed to Parseable will receive parsing errors. if (args[0].endsWith(".rng")) { ! p = new SAXParseable(new InputSource(args[0]), eh); } else { ! p = new CompactParseable(new InputSource(args[0]), eh); } // the error handler passed to CheckingSchemaBuilder will receive additional // errors found during the RELAX NG restrictions check. // typically you'd want to pass in the same error handler,
*** 555,565 **** try { // run the parser DGrammarPattern grammar = (DGrammarPattern) p.parse(sb); OutputStream out = new FileOutputStream(args[1]); XMLOutputFactory factory = XMLOutputFactory.newInstance(); - factory.setProperty("javax.xml.stream.isRepairingNamespaces", Boolean.TRUE); XMLStreamWriter output = factory.createXMLStreamWriter(out); DXMLPrinter printer = new DXMLPrinter(output); printer.printDocument(grammar); output.close(); out.close(); --- 532,541 ----