You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlbeans.apache.org by ra...@apache.org on 2007/05/22 22:14:15 UTC

svn commit: r540734 - in /xmlbeans/trunk: external/lib/piccolo_apache_dist_20040711_v2.jar src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java

Author: radup
Date: Tue May 22 13:14:15 2007
New Revision: 540734

URL: http://svn.apache.org/viewvc?view=rev&rev=540734
Log:
Fixed Piccolo problem when parsing an XML file with errors in the XML decl. Contributed by Ray Birklid.
Fixed XMLBEANS-170, JavaDoc change.

Modified:
    xmlbeans/trunk/external/lib/piccolo_apache_dist_20040711_v2.jar
    xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java

Modified: xmlbeans/trunk/external/lib/piccolo_apache_dist_20040711_v2.jar
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/external/lib/piccolo_apache_dist_20040711_v2.jar?view=diff&rev=540734&r1=540733&r2=540734
==============================================================================
Binary files - no diff available.

Modified: xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java?view=diff&rev=540734&r1=540733&r2=540734
==============================================================================
--- xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java (original)
+++ xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java Tue May 22 13:14:15 2007
@@ -519,24 +519,24 @@
             emit("  return (" + fullName + ") org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }");
             emit("");
 
-            emit("/** @deprecated {@link XMLInputStream} */");
+            emit("/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */");
             emit("public static " + fullName + " parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {");
             emit("  return (" + fullName + ") org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }");
             emit("");
 
-            emit("/** @deprecated {@link XMLInputStream} */");
+            emit("/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */");
             emit("public static " + fullName + " parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {");
             emit("  return (" + fullName + ") org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }");
             emit("");
 
             // Don't have XMLInputStream anymore
-            emit("/** @deprecated {@link XMLInputStream} */");
+            emit("/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */");
             emit("public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {");
             emit("  return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }");
             emit("");
 
             // Don't have XMLInputStream anymore
-            emit("/** @deprecated {@link XMLInputStream} */");
+            emit("/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */");
             emit("public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {");
             emit("  return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }");
             emit("");



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: commits-help@xmlbeans.apache.org