package SBST2015; public class TestMe { public TestMe() { System.out.println(">> Constructor") ; } public void foo(int x) { System.out.println(">> foo") ; } public String goo(char x) { return "goo" ; } public String throwExc() throws Exception { throw new IllegalArgumentException() ; } }