/* Example showing you do not need to use the parameterized type
    in the constructor
*/

class Foo<E> {

	String x = null;
	E y = null;

	Foo(String arg) {
		x = arg;
	}

	void setE(E arg) {
		y = arg;		
	}
}
