1 2 3 4 5 6 7 8 9 10 11 12 13
public class GenericSuper<T> { public void doSomethingWith(T t) { System.out.println("with"); System.out.println(t.toString()); } public void doSomethingElseWith(T t) { System.out.println("else"); System.out.println(t); } }