blob: 6d924781735d0e0ef018159473481b37a2cb9e94 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.tests.targets;
public class ArrayDetailTests {
public static void main(String[] args) {
new ArrayDetailTests().test();
}
public class InnerType {
public class SecondInnerType {
public String toString() {
return "aSecondInnerObject";
}
}
public String toString() {
return "anInnerObject";
}
public SecondInnerType newObject() {
return new SecondInnerType();
}
}
public String toString() {
return "OutermostObject";
}
public void test() {
Runnable[] runs = new Runnable[5];
String[] strings = new String[5];
int[] primitives = new int[5];
ArrayDetailTests[] outers = new ArrayDetailTests[5];
InnerType[] middle = new InnerType[5];
InnerType.SecondInnerType[] inners = new InnerType.SecondInnerType[5];
for (int i = 0; i < outers.length; i++) {
runs[i] = new Runnable() {
public void run() {
}
public String toString() {
return "Runnable";
}
};
strings[i] = Integer.toBinaryString(i);
primitives[i] = i;
outers[i] = new ArrayDetailTests();
middle[i] = new InnerType();
inners[i] = middle[i].newObject();
}
System.out.println(outers);
}
}