We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Previously tracked as https://bugs.openjdk.java.net/browse/JDK-8189718
A DESCRIPTION OF THE PROBLEM : XmlElementRef.java
at line 59 - 62 :
"<? extends Operator>" is not a HTML4 tag. Therefore , I think that : (1)"<" and ">" => "<" and "& gt;" or (2)
..
EXPECTED VERSUS ACTUAL BEHAVIOR : EXPECTED - public void setTerm(JAXBElement<? extends Operator>); public JAXBElement<? extends Operator> getTerm();
ACTUAL - public void setTerm(JAXBElement); public JAXBElement getTerm();
URL OF FAULTY DOCUMENTATION : https://docs.oracle.com/javase/8/docs/api/javax/xml/bind/annotation/XmlElementRef.html
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Fixed since 5ee21af
No branches or pull requests
Previously tracked as https://bugs.openjdk.java.net/browse/JDK-8189718
A DESCRIPTION OF THE PROBLEM :
XmlElementRef.java
at line 59 - 62 :
"<? extends Operator>" is not a HTML4 tag.
=> {@code ..}Therefore , I think that :
(1)"<" and ">" => "<" and "& gt;"
or
(2)
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
public void setTerm(JAXBElement<? extends Operator>);
public JAXBElement<? extends Operator> getTerm();
ACTUAL -
public void setTerm(JAXBElement);
public JAXBElement getTerm();
URL OF FAULTY DOCUMENTATION :
https://docs.oracle.com/javase/8/docs/api/javax/xml/bind/annotation/XmlElementRef.html
The text was updated successfully, but these errors were encountered: