1 package polyglot.types; 2 3 8 public interface LazyClassInitializer 9 { 10 13 public boolean fromClassFile(); 14 15 18 public void initConstructors(ParsedClassType ct); 19 20 23 public void initMethods(ParsedClassType ct); 24 25 28 public void initFields(ParsedClassType ct); 29 30 33 public void initMemberClasses(ParsedClassType ct); 34 35 38 public void initInterfaces(ParsedClassType ct); 39 } 40 | Popular Tags |