1 package xdoclet.modules.ojb.tests; 2 3 17 18 21 public class TestClass 22 { 23 28 public static String getShortName() 29 { 30 String longName = TestClass.class.getName(); 31 32 return longName.substring(longName.lastIndexOf('.') + 1); 33 } 34 35 40 private String initMethod1() 41 { 42 return null; 43 } 44 45 50 public void initMethod2(String arg) 51 {} 52 53 56 public static void initMethod3() 57 {} 58 } 59 | Popular Tags |