DEBSOURCES
Skip Quicknav
sources / eclipse-jdt-ui / 4.10-1 / org.eclipse.jdt.ui.tests.refactoring / resources / IntroduceParameterObject / testImportNameSimple / out / ArrayList.java
12345678910
package p; public class ArrayList { public int x; public int y; public ArrayList(int x, int y) { this.x = x; this.y = y; } }