Searched refs:strArray (Results 1 – 2 of 2) sorted by relevance
163 Object strArray; in testSingle() local165 strArray = Array.newInstance(String.class, 2); in testSingle()167 String[] array = (String[]) strArray; in testSingle()169 Array.set(strArray, 1, "entry one"); in testSingle()171 Array.set(strArray, 2, "entry two"); in testSingle()177 if (!"entry zero".equals(Array.get(strArray, 0))) in testSingle()182 if (array.length != Array.getLength(strArray) || in testSingle()189 Array.set(strArray, 0, new Integer(5)); in testSingle()
22 String[] strArray = new String[1]; in main() local24 Object[] objArray = strArray; in main()