public class DelegatingVisitor extends Object implements org.objectweb.asm.ClassVisitor, org.objectweb.asm.FieldVisitor, org.objectweb.asm.MethodVisitor
| Constructor and Description |
|---|
DelegatingVisitor(org.objectweb.asm.ClassVisitor pClassVisitor) |
| Modifier and Type | Method and Description |
|---|---|
protected org.objectweb.asm.AnnotationVisitor |
doVisitClassAnnotation(String desc,
boolean visible) |
protected void |
doVisitClassAttribute(org.objectweb.asm.Attribute attr) |
protected void |
doVisitClassEnd() |
protected org.objectweb.asm.FieldVisitor |
doVisitField(int access,
String name,
String desc,
String signature,
Object value) |
protected org.objectweb.asm.AnnotationVisitor |
doVisitFieldAnnotation(String desc,
boolean visible) |
protected void |
doVisitFieldAttribute(org.objectweb.asm.Attribute attr) |
protected void |
doVisitFieldEnd() |
protected org.objectweb.asm.MethodVisitor |
doVisitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions) |
protected org.objectweb.asm.AnnotationVisitor |
doVisitMethodAnnotation(String desc,
boolean visible) |
protected void |
doVisitMethodAttribute(org.objectweb.asm.Attribute attr) |
protected void |
doVisitMethodEnd() |
void |
visit(int version,
int access,
String name,
String signature,
String superName,
String[] interfaces) |
org.objectweb.asm.AnnotationVisitor |
visitAnnotation(String desc,
boolean visible) |
org.objectweb.asm.AnnotationVisitor |
visitAnnotationDefault() |
void |
visitAttribute(org.objectweb.asm.Attribute attr) |
void |
visitCode() |
void |
visitEnd() |
org.objectweb.asm.FieldVisitor |
visitField(int access,
String name,
String desc,
String signature,
Object value) |
void |
visitFieldInsn(int opcode,
String owner,
String name,
String desc) |
void |
visitIincInsn(int var,
int increment) |
void |
visitInnerClass(String name,
String outerName,
String innerName,
int access) |
void |
visitInsn(int opcode) |
void |
visitIntInsn(int opcode,
int operand) |
void |
visitJumpInsn(int opcode,
org.objectweb.asm.Label label) |
void |
visitLabel(org.objectweb.asm.Label label) |
void |
visitLdcInsn(Object cst) |
void |
visitLineNumber(int line,
org.objectweb.asm.Label start) |
void |
visitLocalVariable(String name,
String desc,
String signature,
org.objectweb.asm.Label start,
org.objectweb.asm.Label end,
int index) |
void |
visitLookupSwitchInsn(org.objectweb.asm.Label dflt,
int[] keys,
org.objectweb.asm.Label[] labels) |
void |
visitMaxs(int maxStack,
int maxLocals) |
org.objectweb.asm.MethodVisitor |
visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions) |
void |
visitMethodInsn(int opcode,
String owner,
String name,
String desc) |
void |
visitMultiANewArrayInsn(String desc,
int dims) |
void |
visitOuterClass(String owner,
String name,
String desc) |
org.objectweb.asm.AnnotationVisitor |
visitParameterAnnotation(int parameter,
String desc,
boolean visible) |
void |
visitSource(String source,
String debug) |
void |
visitTableSwitchInsn(int min,
int max,
org.objectweb.asm.Label dflt,
org.objectweb.asm.Label[] labels) |
void |
visitTryCatchBlock(org.objectweb.asm.Label start,
org.objectweb.asm.Label end,
org.objectweb.asm.Label handler,
String type) |
void |
visitTypeInsn(int opcode,
String desc) |
void |
visitVarInsn(int opcode,
int var) |
public DelegatingVisitor(org.objectweb.asm.ClassVisitor pClassVisitor)
public final org.objectweb.asm.AnnotationVisitor visitAnnotation(String desc, boolean visible)
visitAnnotation in interface org.objectweb.asm.ClassVisitorvisitAnnotation in interface org.objectweb.asm.FieldVisitorvisitAnnotation in interface org.objectweb.asm.MethodVisitorprotected org.objectweb.asm.AnnotationVisitor doVisitClassAnnotation(String desc, boolean visible)
protected org.objectweb.asm.AnnotationVisitor doVisitMethodAnnotation(String desc, boolean visible)
protected org.objectweb.asm.AnnotationVisitor doVisitFieldAnnotation(String desc, boolean visible)
public final void visitAttribute(org.objectweb.asm.Attribute attr)
visitAttribute in interface org.objectweb.asm.ClassVisitorvisitAttribute in interface org.objectweb.asm.FieldVisitorvisitAttribute in interface org.objectweb.asm.MethodVisitorprotected void doVisitClassAttribute(org.objectweb.asm.Attribute attr)
protected void doVisitMethodAttribute(org.objectweb.asm.Attribute attr)
protected void doVisitFieldAttribute(org.objectweb.asm.Attribute attr)
public final void visitEnd()
visitEnd in interface org.objectweb.asm.ClassVisitorvisitEnd in interface org.objectweb.asm.FieldVisitorvisitEnd in interface org.objectweb.asm.MethodVisitorprotected void doVisitClassEnd()
protected void doVisitMethodEnd()
protected void doVisitFieldEnd()
public void visit(int version,
int access,
String name,
String signature,
String superName,
String[] interfaces)
visit in interface org.objectweb.asm.ClassVisitorpublic final org.objectweb.asm.FieldVisitor visitField(int access,
String name,
String desc,
String signature,
Object value)
visitField in interface org.objectweb.asm.ClassVisitorprotected org.objectweb.asm.FieldVisitor doVisitField(int access,
String name,
String desc,
String signature,
Object value)
public void visitInnerClass(String name, String outerName, String innerName, int access)
visitInnerClass in interface org.objectweb.asm.ClassVisitorpublic final org.objectweb.asm.MethodVisitor visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
visitMethod in interface org.objectweb.asm.ClassVisitorprotected org.objectweb.asm.MethodVisitor doVisitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
public void visitOuterClass(String owner, String name, String desc)
visitOuterClass in interface org.objectweb.asm.ClassVisitorpublic void visitSource(String source, String debug)
visitSource in interface org.objectweb.asm.ClassVisitorpublic org.objectweb.asm.AnnotationVisitor visitAnnotationDefault()
visitAnnotationDefault in interface org.objectweb.asm.MethodVisitorpublic void visitCode()
visitCode in interface org.objectweb.asm.MethodVisitorpublic void visitFieldInsn(int opcode,
String owner,
String name,
String desc)
visitFieldInsn in interface org.objectweb.asm.MethodVisitorpublic void visitIincInsn(int var,
int increment)
visitIincInsn in interface org.objectweb.asm.MethodVisitorpublic void visitInsn(int opcode)
visitInsn in interface org.objectweb.asm.MethodVisitorpublic void visitIntInsn(int opcode,
int operand)
visitIntInsn in interface org.objectweb.asm.MethodVisitorpublic void visitJumpInsn(int opcode,
org.objectweb.asm.Label label)
visitJumpInsn in interface org.objectweb.asm.MethodVisitorpublic void visitLabel(org.objectweb.asm.Label label)
visitLabel in interface org.objectweb.asm.MethodVisitorpublic void visitLdcInsn(Object cst)
visitLdcInsn in interface org.objectweb.asm.MethodVisitorpublic void visitLineNumber(int line,
org.objectweb.asm.Label start)
visitLineNumber in interface org.objectweb.asm.MethodVisitorpublic void visitLocalVariable(String name, String desc, String signature, org.objectweb.asm.Label start, org.objectweb.asm.Label end, int index)
visitLocalVariable in interface org.objectweb.asm.MethodVisitorpublic void visitLookupSwitchInsn(org.objectweb.asm.Label dflt,
int[] keys,
org.objectweb.asm.Label[] labels)
visitLookupSwitchInsn in interface org.objectweb.asm.MethodVisitorpublic void visitMaxs(int maxStack,
int maxLocals)
visitMaxs in interface org.objectweb.asm.MethodVisitorpublic void visitMethodInsn(int opcode,
String owner,
String name,
String desc)
visitMethodInsn in interface org.objectweb.asm.MethodVisitorpublic void visitMultiANewArrayInsn(String desc, int dims)
visitMultiANewArrayInsn in interface org.objectweb.asm.MethodVisitorpublic org.objectweb.asm.AnnotationVisitor visitParameterAnnotation(int parameter,
String desc,
boolean visible)
visitParameterAnnotation in interface org.objectweb.asm.MethodVisitorpublic void visitTableSwitchInsn(int min,
int max,
org.objectweb.asm.Label dflt,
org.objectweb.asm.Label[] labels)
visitTableSwitchInsn in interface org.objectweb.asm.MethodVisitorpublic void visitTryCatchBlock(org.objectweb.asm.Label start,
org.objectweb.asm.Label end,
org.objectweb.asm.Label handler,
String type)
visitTryCatchBlock in interface org.objectweb.asm.MethodVisitorpublic void visitTypeInsn(int opcode,
String desc)
visitTypeInsn in interface org.objectweb.asm.MethodVisitorpublic void visitVarInsn(int opcode,
int var)
visitVarInsn in interface org.objectweb.asm.MethodVisitorCopyright © 2013. All Rights Reserved.