Searched refs:multi3 (Results 1 – 1 of 1) sorted by relevance
181 String[][][][][][] multi3 = new String[2][5][2][3][2][1]; in arrayInstance() local182 multi3[0] = new String[2][][][][]; in arrayInstance()183 multi3[0][1] = new String[3][][][]; in arrayInstance()184 multi3[0][1][2] = new String[2][][]; in arrayInstance()185 multi3[0][1][2][1] = new String[5][]; in arrayInstance()186 multi3[0][1][2][1][4] = new String[2]; in arrayInstance()187 multi3[0][1][2][1][4][1] = "HELLO-3"; in arrayInstance()188 strForm = Arrays.deepToString(multi3); in arrayInstance()