-
Methods Method Description javafx.css.CssMetaData.set(S, V, StyleOrigin) This method is no longer called from CSS code. UseStyleableProperty.applyStyle(javafx.css.StyleOrigin, java.lang.Object)
javafx.fxml.FXMLLoader.loadType(String, String) This method now delegates toFXMLLoader.getDefaultClassLoader()
.javafx.scene.control.SkinBase.snapPosition(double) replaced bysnapPositionX()
andsnapPositionY()
javafx.scene.control.SkinBase.snapSize(double) replaced bysnapSizeX()
andsnapSizeY()
javafx.scene.control.SkinBase.snapSpace(double) replaced bysnapSpaceX()
andsnapSpaceY()
javafx.scene.control.TreeTableView.getNodeLevel(TreeItem<?>) This method does not correctly calculate the distance from the given TreeItem to the root of the TreeTableView. As of JavaFX 8.0_20, the proper way to do this is viaTreeTableView.getTreeItemLevel(TreeItem)
javafx.scene.control.TreeView.getNodeLevel(TreeItem<?>) This method does not correctly calculate the distance from the given TreeItem to the root of the TreeView. As of JavaFX 8.0_20, the proper way to do this is viaTreeView.getTreeItemLevel(TreeItem)
javafx.scene.layout.Region.snapPosition(double) replaced bysnapPositionX()
andsnapPositionY()
javafx.scene.layout.Region.snapSize(double) replaced bysnapSizeX()
andsnapSizeY()
javafx.scene.layout.Region.snapSpace(double) replaced bysnapSpaceX()
andsnapSpaceY()
javafx.scene.media.AudioTrack.getLanguage() UseTrack.getLocale()
instead.javafx.util.Duration.divide(Duration) This method produces surprising results by not taking units into account. UseDuration.divide(double)
instead.javafx.util.Duration.multiply(Duration) This method produces surprising results by not taking units into account. UseDuration.multiply(double)
instead.