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.ClassVisitor
visitAnnotation
in interface org.objectweb.asm.FieldVisitor
visitAnnotation
in interface org.objectweb.asm.MethodVisitor
protected 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.ClassVisitor
visitAttribute
in interface org.objectweb.asm.FieldVisitor
visitAttribute
in interface org.objectweb.asm.MethodVisitor
protected 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.ClassVisitor
visitEnd
in interface org.objectweb.asm.FieldVisitor
visitEnd
in interface org.objectweb.asm.MethodVisitor
protected 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.ClassVisitor
public final org.objectweb.asm.FieldVisitor visitField(int access, String name, String desc, String signature, Object value)
visitField
in interface org.objectweb.asm.ClassVisitor
protected 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.ClassVisitor
public final org.objectweb.asm.MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions)
visitMethod
in interface org.objectweb.asm.ClassVisitor
protected 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.ClassVisitor
public void visitSource(String source, String debug)
visitSource
in interface org.objectweb.asm.ClassVisitor
public org.objectweb.asm.AnnotationVisitor visitAnnotationDefault()
visitAnnotationDefault
in interface org.objectweb.asm.MethodVisitor
public void visitCode()
visitCode
in interface org.objectweb.asm.MethodVisitor
public void visitFieldInsn(int opcode, String owner, String name, String desc)
visitFieldInsn
in interface org.objectweb.asm.MethodVisitor
public void visitIincInsn(int var, int increment)
visitIincInsn
in interface org.objectweb.asm.MethodVisitor
public void visitInsn(int opcode)
visitInsn
in interface org.objectweb.asm.MethodVisitor
public void visitIntInsn(int opcode, int operand)
visitIntInsn
in interface org.objectweb.asm.MethodVisitor
public void visitJumpInsn(int opcode, org.objectweb.asm.Label label)
visitJumpInsn
in interface org.objectweb.asm.MethodVisitor
public void visitLabel(org.objectweb.asm.Label label)
visitLabel
in interface org.objectweb.asm.MethodVisitor
public void visitLdcInsn(Object cst)
visitLdcInsn
in interface org.objectweb.asm.MethodVisitor
public void visitLineNumber(int line, org.objectweb.asm.Label start)
visitLineNumber
in interface org.objectweb.asm.MethodVisitor
public 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.MethodVisitor
public void visitLookupSwitchInsn(org.objectweb.asm.Label dflt, int[] keys, org.objectweb.asm.Label[] labels)
visitLookupSwitchInsn
in interface org.objectweb.asm.MethodVisitor
public void visitMaxs(int maxStack, int maxLocals)
visitMaxs
in interface org.objectweb.asm.MethodVisitor
public void visitMethodInsn(int opcode, String owner, String name, String desc)
visitMethodInsn
in interface org.objectweb.asm.MethodVisitor
public void visitMultiANewArrayInsn(String desc, int dims)
visitMultiANewArrayInsn
in interface org.objectweb.asm.MethodVisitor
public org.objectweb.asm.AnnotationVisitor visitParameterAnnotation(int parameter, String desc, boolean visible)
visitParameterAnnotation
in interface org.objectweb.asm.MethodVisitor
public void visitTableSwitchInsn(int min, int max, org.objectweb.asm.Label dflt, org.objectweb.asm.Label[] labels)
visitTableSwitchInsn
in interface org.objectweb.asm.MethodVisitor
public 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.MethodVisitor
public void visitTypeInsn(int opcode, String desc)
visitTypeInsn
in interface org.objectweb.asm.MethodVisitor
public void visitVarInsn(int opcode, int var)
visitVarInsn
in interface org.objectweb.asm.MethodVisitor
Copyright © 2013. All Rights Reserved.