Lines Matching refs:parent

61     transient MenuContainer parent;
143 return menuComp.parent;
204 * Returns the parent container for this menu component.
217 return parent;
240 MenuContainer parent = this.parent;
241 if (parent != null) {
242 return parent.getFont();
261 Object parent = this.parent;
262 if (parent != null) {
263 if (parent instanceof Component) {
264 font = ((Component)parent).getFont_NoClientCode();
265 } else if (parent instanceof MenuComponent) {
266 font = ((MenuComponent)parent).getFont_NoClientCode();
327 MenuContainer parent = this.parent;
328 if (parent != null) {
329 parent.postEvent(evt);
348 (parent != null && parent instanceof MenuComponent &&
349 ((MenuComponent)parent).newEventsOnly)) {
352 } else if (e instanceof ActionEvent && parent != null) {
353 e.setSource(parent);
354 ((MenuComponent)parent).dispatchEvent(e);
568 * Gets the <code>Accessible</code> parent of this object.
569 * If the parent of this object implements <code>Accessible</code>,
572 * @return the <code>Accessible</code> parent of this object -- can
574 * <code>Accessible</code> parent
580 MenuContainer parent = MenuComponent.this.getParent();
581 if (parent instanceof Accessible) {
582 return (Accessible) parent;
589 * Gets the index of this object in its accessible parent.
591 * @return the index of this object in its parent; -1 if this
592 * object does not have an accessible parent
626 MenuContainer parent = MenuComponent.this.getParent();
627 if (parent instanceof Component)
628 return ((Component)parent).getLocale();
816 * Gets the location of the object relative to the parent in the form
823 * this object or its parent are not on the screen
830 * Sets the location of the object relative to the parent.
840 * relative to its parent.
853 * relative to its parent.
894 * of the object's parent
1025 * Gets the index of this object in its accessible parent.
1027 * @return -1 if this object does not have an accessible parent;
1028 * otherwise, the index of the child in its accessible parent.
1031 MenuContainer localParent = parent;