Lines Matching refs:childIndices
57 protected int[] childIndices;
121 * @param childIndices an array of <code>int</code> that specifies the
128 public TreeModelEvent(Object source, Object[] path, int[] childIndices,
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,
158 this.childIndices = childIndices;
210 this.childIndices = new int[0];
277 if(childIndices != null) {
278 int cCount = childIndices.length;
281 System.arraycopy(childIndices, 0, retArray, 0, cCount);
300 if(childIndices != null) {
302 for(int counter = 0; counter < childIndices.length; counter++)
303 retBuffer.append(Integer.toString(childIndices[counter])+ " ");