Lines Matching defs:parent
42 * an <code>ActionMap</code> can have a parent
62 private ActionMap parent;
66 * Creates an <code>ActionMap</code> with no parent and no mappings.
72 * Sets this <code>ActionMap</code>'s parent.
74 * @param map the <code>ActionMap</code> that is the parent of this one
77 this.parent = map;
81 * Returns this <code>ActionMap</code>'s parent.
83 * @return the <code>ActionMap</code> that is the parent of this one,
84 * or null if this <code>ActionMap</code> has no parent
87 return parent;
114 * parent <code>ActionMap</code> if the binding is not locally defined.
121 ActionMap parent = getParent();
123 if (parent != null) {
124 return parent.get(key);
172 * its parent. This method differs from <code>keys()</code> in that
173 * this method includes the keys defined in the parent.
177 ActionMap parent = getParent();
180 if (parent != null) {
181 return parent.allKeys();
185 if (parent == null) {
189 Object[] pKeys = parent.allKeys();