Fixed Piccolo problem when parsing an XML file with errors in the XML decl. Contributed by Ray Birklid.
Fixed XMLBEANS-170, JavaDoc change.


git-svn-id: https://svn.apache.org/repos/asf/xmlbeans/trunk@540734 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/external/lib/piccolo_apache_dist_20040711_v2.jar b/external/lib/piccolo_apache_dist_20040711_v2.jar
index 7ccfd88..bc8dd79 100644
--- a/external/lib/piccolo_apache_dist_20040711_v2.jar
+++ b/external/lib/piccolo_apache_dist_20040711_v2.jar
Binary files differ
diff --git a/src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java b/src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java
index 50b711c..c0523c1 100644
--- a/src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java
+++ b/src/typeimpl/org/apache/xmlbeans/impl/schema/SchemaTypeCodePrinter.java
@@ -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("");