Lines Matching refs:child

1045                 Window child = ownedWindowList.elementAt(i).get();
1046 if ((child != null) && child.showWithParent) {
1047 child.show();
1048 child.showWithParent = false;
1076 Window child = w.ownedWindowList.elementAt(i).get();
1077 if (child != null) {
1078 updateChildFocusableWindowState(child);
1106 Window child = ownedWindowList.elementAt(i).get();
1107 if ((child != null) && child.visible) {
1108 child.hide();
1109 child.showWithParent = true;
1154 * child overrides dispose() in a wrong way without calling super.dispose().
1182 Window child = (Window) (((WeakReference)
1184 if (child != null) {
1185 child.disposeImpl();
2145 * the list of child windows is dumped to <code>System.out</code>.
2149 // Dump the list of child windows to System.out.
2276 * Returns the child Component of this Window that has focus if this Window
2279 * @return the child Component with focus, or null if this Window is not
2292 * Returns the child Component of this Window that will receive the focus
2295 * this Window is not focused, then the child Component that most recently
2296 * requested focus will be returned. If no child Component has ever
2298 * initial focusable Component is returned. If no child Component has ever
2301 * @return the child Component that will receive focus when this Window is
2788 void connectOwnedWindow(Window child) {
2789 child.parent = this;
2790 addOwnedWindow(child.weakThis);
2874 * Writes a list of child windows as optional data.
2886 * <code>ownedWindowK</code> indicating a child
2917 Window child = ownedWindowList.elementAt(i).get();
2918 if (child != null) {
2920 s.writeObject(child);
3028 * (possibly <code>null</code>) child windows.
3899 Component child = content.getComponent(0);
3902 if (child instanceof javax.swing.RootPaneContainer) {
3903 setLayersOpaque(child, isOpaque);