package p;

public class InnerClassParameter {
	private int foo;
	public InnerClassParameter() {
	}
	public int getFoo() {
		return foo;
	}
	public void setFoo(int foo) {
		this.foo = foo;
	}
}