package p;

public class ArrayLengthAccessParameter {
	private int test;
	public ArrayLengthAccessParameter(int test) {
		this.test = test;
	}
	public int getTest() {
		return test;
	}
	public void setTest(int test) {
		this.test = test;
	}
}