Class EmptyVisitor
java.lang.Object
org.objectweb.asm.ClassVisitor
org.apache.xbean.asm9.original.commons.EmptyVisitor
- Direct Known Subclasses:
AbstractFinder.InfoBuildingVisitor,AnnotationFinder.InfoBuildingVisitor
public class EmptyVisitor
extends org.objectweb.asm.ClassVisitor
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final org.objectweb.asm.AnnotationVisitorprotected final org.objectweb.asm.FieldVisitorprotected final org.objectweb.asm.MethodVisitorFields inherited from class org.objectweb.asm.ClassVisitor
api, cv -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.objectweb.asm.AnnotationVisitororg.objectweb.asm.FieldVisitororg.objectweb.asm.MethodVisitorvoidvisit(int version, int access, String name, String signature, String superName, String[] interfaces) protected voidorg.objectweb.asm.AnnotationVisitorvisitAnnotation(String desc, boolean visible) protected org.objectweb.asm.AnnotationVisitorvisitAnnotation(String name, String desc) protected org.objectweb.asm.AnnotationVisitorprotected org.objectweb.asm.AnnotationVisitorvisitArray(String name) voidvisitAttribute(org.objectweb.asm.Attribute attr) protected voidvoidvisitEnd()protected voidorg.objectweb.asm.FieldVisitorvisitField(int access, String name, String desc, String signature, Object value) protected voidvisitFieldInsn(int opcode, String owner, String name, String desc) protected voidvisitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) protected voidvisitIincInsn(int var, int increment) voidvisitInnerClass(String name, String outerName, String innerName, int access) protected voidvisitInsn(int opcode) protected voidvisitIntInsn(int opcode, int operand) protected voidvisitInvokeDynamicInsn(String s, String s2, org.objectweb.asm.Handle handle, Object[] objects) protected voidvisitJumpInsn(int i, org.objectweb.asm.Label label) protected voidvisitLabel(org.objectweb.asm.Label label) protected voidvisitLdcInsn(Object cst) protected voidvisitLineNumber(int i, org.objectweb.asm.Label label) protected voidvisitLocalVariable(String s, String s2, String s3, org.objectweb.asm.Label label, org.objectweb.asm.Label label2, int i) protected voidvisitLookupSwitchInsn(org.objectweb.asm.Label label, int[] ints, org.objectweb.asm.Label[] labels) protected voidvisitMaxs(int maxStack, int maxLocals) org.objectweb.asm.MethodVisitorvisitMethod(int access, String name, String desc, String signature, String[] exceptions) protected voidvisitMethodInsn(int opcode, String owner, String name, String desc) protected org.objectweb.asm.AnnotationVisitorvisitMethodParameterAnnotation(int parameter, String desc, boolean visible) protected voidvisitMultiANewArrayInsn(String desc, int dims) voidvisitOuterClass(String owner, String name, String desc) protected org.objectweb.asm.AnnotationVisitorvisitParameterAnnotation(int parameter, String desc, boolean visible) voidvisitSource(String source, String debug) protected voidvisitTableSwitchInsn(int i, int i2, org.objectweb.asm.Label label, org.objectweb.asm.Label[] labels) protected voidvisitTryCatchBlock(org.objectweb.asm.Label label, org.objectweb.asm.Label label2, org.objectweb.asm.Label label3, String s) org.objectweb.asm.AnnotationVisitorvisitTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String desc, boolean visible) protected voidvisitTypeInsn(int opcode, String type) protected voidvisitVarInsn(int opcode, int var) Methods inherited from class org.objectweb.asm.ClassVisitor
getDelegate, visitModule, visitNestHost, visitNestMember, visitPermittedSubclass, visitRecordComponent
-
Field Details
-
av
protected final org.objectweb.asm.AnnotationVisitor av -
fv
protected final org.objectweb.asm.FieldVisitor fv -
mv
protected final org.objectweb.asm.MethodVisitor mv
-
-
Constructor Details
-
EmptyVisitor
public EmptyVisitor()
-
-
Method Details
-
visitAnnotationDefault
protected org.objectweb.asm.AnnotationVisitor visitAnnotationDefault() -
visitArray
-
visitAnnotation
-
visitEnum
-
visit
-
visitVarInsn
protected void visitVarInsn(int opcode, int var) -
visitTypeInsn
-
visitFieldInsn
-
visitMethodInsn
-
visitInvokeDynamicInsn
-
visitIntInsn
protected void visitIntInsn(int opcode, int operand) -
visitJumpInsn
protected void visitJumpInsn(int i, org.objectweb.asm.Label label) -
visitLabel
protected void visitLabel(org.objectweb.asm.Label label) -
visitLdcInsn
-
visitIincInsn
protected void visitIincInsn(int var, int increment) -
visitTableSwitchInsn
protected void visitTableSwitchInsn(int i, int i2, org.objectweb.asm.Label label, org.objectweb.asm.Label[] labels) -
visitLookupSwitchInsn
protected void visitLookupSwitchInsn(org.objectweb.asm.Label label, int[] ints, org.objectweb.asm.Label[] labels) -
visitMultiANewArrayInsn
-
visitTryCatchBlock
protected void visitTryCatchBlock(org.objectweb.asm.Label label, org.objectweb.asm.Label label2, org.objectweb.asm.Label label3, String s) -
visitLocalVariable
-
visitLineNumber
protected void visitLineNumber(int i, org.objectweb.asm.Label label) -
visitMaxs
protected void visitMaxs(int maxStack, int maxLocals) -
visitInsn
protected void visitInsn(int opcode) -
visitFrame
-
visitCode
protected void visitCode() -
visitMethodParameterAnnotation
protected org.objectweb.asm.AnnotationVisitor visitMethodParameterAnnotation(int parameter, String desc, boolean visible) -
visitParameterAnnotation
protected org.objectweb.asm.AnnotationVisitor visitParameterAnnotation(int parameter, String desc, boolean visible) -
visit
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) - Overrides:
visitin classorg.objectweb.asm.ClassVisitor
-
visitSource
- Overrides:
visitSourcein classorg.objectweb.asm.ClassVisitor
-
visitOuterClass
- Overrides:
visitOuterClassin classorg.objectweb.asm.ClassVisitor
-
visitAnnotation
- Overrides:
visitAnnotationin classorg.objectweb.asm.ClassVisitor
-
visitAttribute
public void visitAttribute(org.objectweb.asm.Attribute attr) - Overrides:
visitAttributein classorg.objectweb.asm.ClassVisitor
-
visitInnerClass
- Overrides:
visitInnerClassin classorg.objectweb.asm.ClassVisitor
-
visitField
public org.objectweb.asm.FieldVisitor visitField(int access, String name, String desc, String signature, Object value) - Overrides:
visitFieldin classorg.objectweb.asm.ClassVisitor
-
visitMethod
public org.objectweb.asm.MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) - Overrides:
visitMethodin classorg.objectweb.asm.ClassVisitor
-
visitTypeAnnotation
public org.objectweb.asm.AnnotationVisitor visitTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String desc, boolean visible) - Overrides:
visitTypeAnnotationin classorg.objectweb.asm.ClassVisitor
-
visitEnd
public void visitEnd()- Overrides:
visitEndin classorg.objectweb.asm.ClassVisitor
-
annotationVisitor
public org.objectweb.asm.AnnotationVisitor annotationVisitor() -
fieldVisitor
public org.objectweb.asm.FieldVisitor fieldVisitor() -
methodVisitor
public org.objectweb.asm.MethodVisitor methodVisitor()
-