Searched defs:aChild (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java265 * @param aChild the TreeNode to search for among this node's children
266 * @exception IllegalArgumentException if <code>aChild</code>
272 public int getIndex(TreeNode aChild) { argument
273 if (aChild == null) {
277 if (!isNodeChild(aChild)) {
280 return children.indexOf(aChild); // linear search
366 * Removes <code>aChild</code> from this node's child array, giving it a
369 * @param aChild a child of this node to remove
370 * @exception IllegalArgumentException if <code>aChild</code>
373 public void remove(MutableTreeNode aChild) { argument
912 getChildAfter(TreeNode aChild) argument
943 getChildBefore(TreeNode aChild) argument
[all...]

Completed in 156 milliseconds