Package org.jboss.byteman.agent.adapter
Class EntryTriggerAdapter
- java.lang.Object
-
- org.objectweb.asm.ClassVisitor
-
- org.jboss.byteman.agent.adapter.RuleAdapter
-
- org.jboss.byteman.agent.adapter.RuleTriggerAdapter
-
- org.jboss.byteman.agent.adapter.EntryTriggerAdapter
-
public class EntryTriggerAdapter extends RuleTriggerAdapter
asm Adapter class used to add a rule event trigger call to a method of som egiven class
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private class
EntryTriggerAdapter.EntryTriggerConstructorAdapter
a method visitor used to add a rule event trigger call to a constructor -- this has to make sure the super constructor has been called before allowing a trigger call to be compiledprivate class
EntryTriggerAdapter.EntryTriggerMethodAdapter
a method visitor used to add a rule event trigger call to a method
-
Field Summary
-
Fields inherited from class org.jboss.byteman.agent.adapter.RuleTriggerAdapter
className, superName
-
Fields inherited from class org.jboss.byteman.agent.adapter.RuleAdapter
ASM_VERSION, transformContext
-
-
Constructor Summary
Constructors Constructor Description EntryTriggerAdapter(org.objectweb.asm.ClassVisitor cv, TransformContext transformContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.objectweb.asm.MethodVisitor
visitMethod(int access, java.lang.String name, java.lang.String desc, java.lang.String signature, java.lang.String[] exceptions)
-
Methods inherited from class org.jboss.byteman.agent.adapter.RuleTriggerAdapter
injectIntoMethod, isSuperOrSiblingConstructorCall, visit
-
Methods inherited from class org.jboss.byteman.agent.adapter.RuleAdapter
getTransformContext, matchTargetMethod
-
-
-
-
Constructor Detail
-
EntryTriggerAdapter
public EntryTriggerAdapter(org.objectweb.asm.ClassVisitor cv, TransformContext transformContext)
-
-