Lines Matching defs:owner

70  * owner when it's constructed.
107 * Window w = new Window(Window owner, GraphicsConfiguration gc);
443 final WeakReference<Window> owner;
447 owner = new WeakReference<Window>(victim.getOwner());
452 Window parent = owner.get();
541 * <code>Frame</code> as its owner. The window will not be focusable
542 * unless its owner is showing on the screen.
550 * @param owner the <code>Frame</code> to act as owner or <code>null</code>
551 * if this window has no owner
552 * @exception IllegalArgumentException if the <code>owner</code>'s
561 public Window(Frame owner) {
562 this(owner == null ? (GraphicsConfiguration)null :
563 owner.getGraphicsConfiguration());
564 ownedInit(owner);
569 * <code>Window</code> as its owner. This window will not be focusable
579 * @param owner the <code>Window</code> to act as owner or
580 * <code>null</code> if this window has no owner
581 * @exception IllegalArgumentException if the <code>owner</code>'s
593 public Window(Window owner) {
594 this(owner == null ? (GraphicsConfiguration)null :
595 owner.getGraphicsConfiguration());
596 ownedInit(owner);
600 * Constructs a new, initially invisible window with the specified owner
612 * @param owner the window to act as owner or <code>null</code>
613 * if this window has no owner
629 public Window(Window owner, GraphicsConfiguration gc) {
631 ownedInit(owner);
634 private void ownedInit(Window owner) {
635 this.parent = owner;
636 if (owner != null) {
637 owner.addOwnedWindow(weakThis);
688 * The icon of an owned window may be inherited from the owner
793 * If the window and/or its owner are not displayable yet,
997 * If the {@code Window} and/or its owner
1018 * Makes the Window visible. If the Window and/or its owner
1228 * It's overridden here because parent == owner in Window,
1229 * and we shouldn't adjust counter on owner
1236 // do nothing since parent == owner and we shouldn't
1237 // ajust counter on owner
1274 * Dialog that is an owner of this Window will be activated.
1447 * Returns the owner of this window.
1592 * that have no owner. They include {@code Frame}s and ownerless
1712 Window owner = getOwner_NoClientCode();
1713 return (owner != null) && owner.isModalExcluded(exclusionType);
2329 * Dialog that is an owner of the focused Window.
2341 * Returns whether this Window is focused. If there exists a focus owner,
2342 * the focused Window is the Window that is, or contains, that focus owner.
2343 * If there is no focus owner, then no Window is focused.
2347 * is an owner of the focused Window.
2445 * owner. For a Frame or Dialog to be focusable, its focusable Window state
2452 * owner.
2482 for (Window owner = getOwner(); owner != null;
2483 owner = owner.getOwner())
2485 if (owner instanceof Frame || owner instanceof Dialog) {
2486 return owner.isShowing();
2560 for (Window owner = getOwner();
2561 owner != null;
2562 owner = owner.getOwner())
2565 KeyboardFocusManager.getMostRecentFocusOwner(owner);
2581 * (e.g. when showing an owner of the window makes the window to be shown).
3347 // Check that "component" is an acceptable focus owner and don't store it otherwise
3358 * Checks whether this window can contain focus owner.
3359 * Verifies that it is focusable and as container it can container focus owner.