# HG changeset patch # User darcy # Date 1436317055 25200 # Node ID cf1ce8164b297beb44948e013f947281784ed0b9 # Parent 39ac2a55f28d8f1fdc2caa7e9a0c026d0c88fd97 8130716: Fix reference problems in jaxp javadoc Reviewed-by: lancea diff -r 39ac2a55f28d -r cf1ce8164b29 src/java.xml/share/classes/javax/xml/stream/XMLEventReader.java --- a/src/java.xml/share/classes/javax/xml/stream/XMLEventReader.java Tue Jul 07 18:19:57 2015 +0200 +++ b/src/java.xml/share/classes/javax/xml/stream/XMLEventReader.java Tue Jul 07 17:57:35 2015 -0700 @@ -49,7 +49,7 @@ * Get the next XMLEvent * @see XMLEvent * @throws XMLStreamException if there is an error with the underlying XML. - * @throws NoSuchElementException iteration has no more elements. + * @throws java.util.NoSuchElementException iteration has no more elements. */ public XMLEvent nextEvent() throws XMLStreamException; diff -r 39ac2a55f28d -r cf1ce8164b29 src/java.xml/share/classes/javax/xml/stream/events/XMLEvent.java --- a/src/java.xml/share/classes/javax/xml/stream/events/XMLEvent.java Tue Jul 07 18:19:57 2015 +0200 +++ b/src/java.xml/share/classes/javax/xml/stream/events/XMLEvent.java Tue Jul 07 17:57:35 2015 -0700 @@ -170,7 +170,7 @@ * infoset expressed. * * @param writer The writer that will output the data - * @throws XMLStreamException if there is a fatal error writing the event + * @throws javax.xml.stream.XMLStreamException if there is a fatal error writing the event */ public void writeAsEncodedUnicode(Writer writer) throws javax.xml.stream.XMLStreamException;