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

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTreeModelEvent.java57 protected int[] childIndices; field in class:TreeModelEvent
121 * @param childIndices an array of <code>int</code> that specifies the
128 public TreeModelEvent(Object source, Object[] path, int[] childIndices, argument
131 this(source, new TreePath(path), childIndices, children);
146 * @param childIndices an array of <code>int</code> that specifies the
153 public TreeModelEvent(Object source, TreePath path, int[] childIndices, argument
158 this.childIndices = childIndices;
210 this.childIndices = new int[0];
277 if(childIndices !
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DAbstractTreeTableModel.java84 int[] childIndices,
96 childIndices, children);
110 int[] childIndices,
122 childIndices, children);
136 int[] childIndices,
148 childIndices, children);
162 int[] childIndices,
174 childIndices, children);
83 fireTreeNodesChanged(Object source, Object[] path, int[] childIndices, Object[] children) argument
109 fireTreeNodesInserted(Object source, Object[] path, int[] childIndices, Object[] children) argument
135 fireTreeNodesRemoved(Object source, Object[] path, int[] childIndices, Object[] children) argument
161 fireTreeStructureChanged(Object source, Object[] path, int[] childIndices, Object[] children) argument
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeModel.java303 * node. childIndices should be the index of the new elements and
306 public void nodesWereInserted(TreeNode node, int[] childIndices) { argument
307 if(listenerList != null && node != null && childIndices != null
308 && childIndices.length > 0) {
309 int cCount = childIndices.length;
313 newChildren[counter] = node.getChildAt(childIndices[counter]);
314 fireTreeNodesInserted(this, getPathToRoot(node), childIndices,
321 * node. childIndices should be the index of the removed elements and
325 public void nodesWereRemoved(TreeNode node, int[] childIndices, argument
327 if(node != null && childIndices !
337 nodesChanged(TreeNode node, int[] childIndices) argument
472 fireTreeNodesChanged(Object source, Object[] path, int[] childIndices, Object[] children) argument
503 fireTreeNodesInserted(Object source, Object[] path, int[] childIndices, Object[] children) argument
534 fireTreeNodesRemoved(Object source, Object[] path, int[] childIndices, Object[] children) argument
566 fireTreeStructureChanged(Object source, Object[] path, int[] childIndices, Object[] children) argument
[all...]

Completed in 466 milliseconds