< prev index next >

src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/gen/config/NGCCRuntime.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 48,57 **** --- 48,58 ---- * <li>Keep track of all Attributes. * * <li>manage mapping between namespace URIs and prefixes. * * <li>TODO: provide support for interleaving. + * </ol> * <p><b> * Auto-generated, do not edit. * </b></p> * @version $Id: NGCCRuntime.java,v 1.15 2002/09/29 02:55:48 okajima Exp $ * @author Kohsuke Kawaguchi (kk@kohsuke.org)
*** 68,78 **** * <p> * This method can be called right after the object is created * or the reset method is called. You can't replace the root * handler while parsing is in progress. * <p> ! * Usually a generated class that corresponds to the &lt;start> * pattern will be used as the root handler, but any NGCCHandler * can be a root handler. * * @exception IllegalStateException * If this method is called but it doesn't satisfy the --- 69,79 ---- * <p> * This method can be called right after the object is created * or the reset method is called. You can't replace the root * handler while parsing is in progress. * <p> ! * Usually a generated class that corresponds to the {@code <start>} * pattern will be used as the root handler, but any NGCCHandler * can be a root handler. * * @exception IllegalStateException * If this method is called but it doesn't satisfy the
*** 515,525 **** return "http://www.w3.org/XML/1998/namespace"; else return null; // prefix undefined } ! // error reporting protected void unexpectedX(String token) throws SAXException { throw new SAXParseException(MessageFormat.format( "Unexpected {0} appears at line {1} column {2}", new Object[]{ token, --- 516,526 ---- return "http://www.w3.org/XML/1998/namespace"; else return null; // prefix undefined } ! // error reporting protected void unexpectedX(String token) throws SAXException { throw new SAXParseException(MessageFormat.format( "Unexpected {0} appears at line {1} column {2}", new Object[]{ token,
*** 529,539 **** } ! // // // trace functions // // private int indent=0; --- 530,540 ---- } ! // // // trace functions // // private int indent=0;
< prev index next >