Searched refs:anArray (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableModel.java676 * @param anArray the array to be converted
677 * @return the new vector; if <code>anArray</code> is <code>null</code>,
680 protected static Vector convertToVector(Object[] anArray) { argument
681 if (anArray == null) {
684 Vector<Object> v = new Vector<Object>(anArray.length);
685 for (Object o : anArray) {
693 * @param anArray the double array to be converted
694 * @return the new vector of vectors; if <code>anArray</code> is
697 protected static Vector convertToVector(Object[][] anArray) { argument
698 if (anArray
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListModel.java97 * @param anArray the array into which the components get copied
100 public void copyInto(Object anArray[]) { argument
101 delegate.copyInto(anArray);
/openjdk7/jdk/src/share/classes/java/util/
H A DVector.java177 * component {@code k} of {@code anArray}.
179 * @param anArray the array into which the components get copied
187 public synchronized void copyInto(Object[] anArray) { argument
188 System.arraycopy(elementData, 0, anArray, 0, elementCount);

Completed in 35 milliseconds