-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
None
-
8
-
windows_7
FULL PRODUCT VERSION :
java version "1.8.0-ea"
Java(TM) SE Runtime Environment (build 1.8.0-ea-b120)
Java HotSpot(TM) 64-Bit Server VM (build 25.0-b62, mixed mode)
A DESCRIPTION OF THE PROBLEM :
The Javadoc spec for JDK 8 is out of date. All new functionality should be documented.
E.g. http://download.java.net/jdk8/docs/technotes/tools/unix/javadoc.html#CHDFAGJH says that @see tags are not automatically copied to an overriding method, but the Javadoc tool copies them.
There also seems to be special behavior for javafx.beans.property.ReadOnlyProperty:
/**
* The simple ID doc.
*/
private ReadOnlyProperty<String> id;
public ReadOnlyProperty<String> idProperty() {
return id == null ? id = new SimpleStringProperty() : id;
}
REGRESSION. Last worked in version 7u45
REPRODUCIBILITY :
This bug can be reproduced always.
java version "1.8.0-ea"
Java(TM) SE Runtime Environment (build 1.8.0-ea-b120)
Java HotSpot(TM) 64-Bit Server VM (build 25.0-b62, mixed mode)
A DESCRIPTION OF THE PROBLEM :
The Javadoc spec for JDK 8 is out of date. All new functionality should be documented.
E.g. http://download.java.net/jdk8/docs/technotes/tools/unix/javadoc.html#CHDFAGJH says that @see tags are not automatically copied to an overriding method, but the Javadoc tool copies them.
There also seems to be special behavior for javafx.beans.property.ReadOnlyProperty:
/**
* The simple ID doc.
*/
private ReadOnlyProperty<String> id;
public ReadOnlyProperty<String> idProperty() {
return id == null ? id = new SimpleStringProperty() : id;
}
REGRESSION. Last worked in version 7u45
REPRODUCIBILITY :
This bug can be reproduced always.
- relates to
-
JDK-8140768 Javadoc mangles HTML for StructuralPropertyDescriptor#isChildListProperty()
-
- Open
-