-
Bug
-
Resolution: Fixed
-
P2
-
8u20
Several methods of the Node class do not show up in the detail section of the generated javadoc. This is because of the following bad HTML in the impl_findStyles method (never mind that it should have been "@treatAsPrivate" ... I will fix that, too).
/**
* Find CSS styles that were used to style this Node in its current pseudo-class state. The map will contain the styles from this node and,
* if the node is a Parent, its children. The node corresponding to an entry in the Map can be obtained by casting a StyleableProperty key to a
* javafx.beans.property.Property and calling getBean(). The List<Style> contains only those styles used to style the property and will contain
...
*/
@Deprecated // SB-dependency: RT-21096 has been filed to track this
public Map<StyleableProperty<?>,List<Style>> impl_findStyles(Map<StyleableProperty<?>,List<Style>> styleMap) {
The <Style> was treated as an (unclosed) html tag.
/**
* Find CSS styles that were used to style this Node in its current pseudo-class state. The map will contain the styles from this node and,
* if the node is a Parent, its children. The node corresponding to an entry in the Map can be obtained by casting a StyleableProperty key to a
* javafx.beans.property.Property and calling getBean(). The List<Style> contains only those styles used to style the property and will contain
...
*/
@Deprecated // SB-dependency: RT-21096 has been filed to track this
public Map<StyleableProperty<?>,List<Style>> impl_findStyles(Map<StyleableProperty<?>,List<Style>> styleMap) {
The <Style> was treated as an (unclosed) html tag.
- relates to
-
JDK-8092580 impl_* methods should not be displayed in documentation
- Resolved