1 23 24 package protoactive.core.mop; 25 26 import org.objectweb.fractal.julia.asm.MetaCodeGenerator; 27 28 61 62 public class StubCodeGenerator extends MetaCodeGenerator { 63 64 protected String getControllerInterfaceName () { 65 return "/meta-object"; 66 } 67 68 protected String getHandleMethodCallMethodName () { 69 return "handleMethodCall"; 70 } 71 72 protected boolean reifyInterfaceName () { 73 return true; 74 } 75 76 protected boolean reifyTargetObject () { 77 return true; 78 } 79 80 protected String getIsReflectedCallMethodName () { 81 return "isReflectedCall"; 82 } 83 } 84 | Popular Tags |