< prev index next >

modules/javafx.graphics/src/main/java/javafx/stage/PopupWindow.java

Print this page
rev 10598 : 8185767: Fix broken links in Javadocs

*** 367,386 **** showImpl(owner); } /** * Shows the popup at the specified location on the screen. The popup window ! * is positioned in such way that its anchor point ({@link #anchorLocation}) * is displayed at the specified {@code anchorX} and {@code anchorY} * coordinates. * <p> * The popup is associated with the specified owner node. The {@code Window} * which contains the owner node at the time of the call becomes an owner * window of the displayed popup. * </p> * <p> ! * Note that when {@link #autoHideProperty()} is set to true, mouse press on the owner Node * will not hide the PopupWindow. * </p> * * @param ownerNode The owner Node of the popup. It must not be null * and must be associated with a Window. --- 367,386 ---- showImpl(owner); } /** * Shows the popup at the specified location on the screen. The popup window ! * is positioned in such way that its anchor point ({@link #anchorLocationProperty() anchorLocation}) * is displayed at the specified {@code anchorX} and {@code anchorY} * coordinates. * <p> * The popup is associated with the specified owner node. The {@code Window} * which contains the owner node at the time of the call becomes an owner * window of the displayed popup. * </p> * <p> ! * Note that when {@link #autoHideProperty() autoHide} is set to true, mouse press on the owner Node * will not hide the PopupWindow. * </p> * * @param ownerNode The owner Node of the popup. It must not be null * and must be associated with a Window.
*** 417,427 **** showImpl(newOwnerWindow); } /** * Shows the popup at the specified location on the screen. The popup window ! * is positioned in such way that its anchor point ({@link #anchorLocation}) * is displayed at the specified {@code anchorX} and {@code anchorY} * coordinates. * * @param ownerWindow The owner of the popup. This must not be null. * @param anchorX the x position of the popup anchor in screen coordinates --- 417,427 ---- showImpl(newOwnerWindow); } /** * Shows the popup at the specified location on the screen. The popup window ! * is positioned in such way that its anchor point ({@link #anchorLocationProperty() anchorLocation}) * is displayed at the specified {@code anchorX} and {@code anchorY} * coordinates. * * @param ownerWindow The owner of the popup. This must not be null. * @param anchorX the x position of the popup anchor in screen coordinates
< prev index next >