package p;

public class ComplexExtractParameter {
	public int test;
	public int test2;
	public int test3;
	public int test4;
	public ComplexExtractParameter(int test2, int test4) {
		this.test2 = test2;
		this.test4 = test4;
	}
}