public class DependencyVisitor extends Object implements org.objectweb.asm.AnnotationVisitor, org.objectweb.asm.signature.SignatureVisitor, org.objectweb.asm.ClassVisitor, org.objectweb.asm.FieldVisitor, org.objectweb.asm.MethodVisitor
org.objectweb.asm.depend.DependencyVisitor
in the ASM dependencies example.Constructor and Description |
---|
DependencyVisitor() |
Modifier and Type | Method and Description |
---|---|
Set |
getClasses() |
void |
visit(int version,
int access,
String name,
String signature,
String superName,
String[] interfaces) |
void |
visit(String name,
Object value) |
org.objectweb.asm.AnnotationVisitor |
visitAnnotation(String desc,
boolean visible) |
org.objectweb.asm.AnnotationVisitor |
visitAnnotation(String name,
String desc) |
org.objectweb.asm.AnnotationVisitor |
visitAnnotationDefault() |
org.objectweb.asm.AnnotationVisitor |
visitArray(String name) |
org.objectweb.asm.signature.SignatureVisitor |
visitArrayType() |
void |
visitAttribute(org.objectweb.asm.Attribute attr) |
void |
visitBaseType(char descriptor) |
org.objectweb.asm.signature.SignatureVisitor |
visitClassBound() |
void |
visitClassType(String name) |
void |
visitCode() |
void |
visitEnd() |
void |
visitEnum(String name,
String desc,
String value) |
org.objectweb.asm.signature.SignatureVisitor |
visitExceptionType() |
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 |
visitFormalTypeParameter(String name) |
void |
visitFrame(int type,
int nLocal,
Object[] local,
int nStack,
Object[] stack) |
void |
visitIincInsn(int var,
int increment) |
void |
visitInnerClass(String name,
String outerName,
String innerName,
int access) |
void |
visitInnerClassType(String name) |
void |
visitInsn(int opcode) |
org.objectweb.asm.signature.SignatureVisitor |
visitInterface() |
org.objectweb.asm.signature.SignatureVisitor |
visitInterfaceBound() |
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) |
org.objectweb.asm.signature.SignatureVisitor |
visitParameterType() |
org.objectweb.asm.signature.SignatureVisitor |
visitReturnType() |
void |
visitSource(String source,
String debug) |
org.objectweb.asm.signature.SignatureVisitor |
visitSuperclass() |
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 |
visitTypeArgument() |
org.objectweb.asm.signature.SignatureVisitor |
visitTypeArgument(char wildcard) |
void |
visitTypeInsn(int opcode,
String desc) |
void |
visitTypeVariable(String name) |
void |
visitVarInsn(int opcode,
int var) |
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces)
visit
in interface org.objectweb.asm.ClassVisitor
public void visitSource(String source, String debug)
visitSource
in interface org.objectweb.asm.ClassVisitor
public void visitOuterClass(String owner, String name, String desc)
visitOuterClass
in interface org.objectweb.asm.ClassVisitor
public 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
public 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
public void visitInnerClass(String name, String outerName, String innerName, int access)
visitInnerClass
in interface org.objectweb.asm.ClassVisitor
public org.objectweb.asm.FieldVisitor visitField(int access, String name, String desc, String signature, Object value)
visitField
in interface org.objectweb.asm.ClassVisitor
public org.objectweb.asm.MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions)
visitMethod
in interface org.objectweb.asm.ClassVisitor
public org.objectweb.asm.AnnotationVisitor visitAnnotationDefault()
visitAnnotationDefault
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 visitCode()
visitCode
in interface org.objectweb.asm.MethodVisitor
public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack)
visitFrame
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 visitVarInsn(int opcode, int var)
visitVarInsn
in interface org.objectweb.asm.MethodVisitor
public void visitTypeInsn(int opcode, String desc)
visitTypeInsn
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 visitMethodInsn(int opcode, String owner, String name, String desc)
visitMethodInsn
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 visitIincInsn(int var, int increment)
visitIincInsn
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 visitLookupSwitchInsn(org.objectweb.asm.Label dflt, int[] keys, org.objectweb.asm.Label[] labels)
visitLookupSwitchInsn
in interface org.objectweb.asm.MethodVisitor
public void visitMultiANewArrayInsn(String desc, int dims)
visitMultiANewArrayInsn
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 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 visitLineNumber(int line, org.objectweb.asm.Label start)
visitLineNumber
in interface org.objectweb.asm.MethodVisitor
public void visitMaxs(int maxStack, int maxLocals)
visitMaxs
in interface org.objectweb.asm.MethodVisitor
public void visit(String name, Object value)
visit
in interface org.objectweb.asm.AnnotationVisitor
public void visitEnum(String name, String desc, String value)
visitEnum
in interface org.objectweb.asm.AnnotationVisitor
public org.objectweb.asm.AnnotationVisitor visitAnnotation(String name, String desc)
visitAnnotation
in interface org.objectweb.asm.AnnotationVisitor
public org.objectweb.asm.AnnotationVisitor visitArray(String name)
visitArray
in interface org.objectweb.asm.AnnotationVisitor
public void visitEnd()
visitEnd
in interface org.objectweb.asm.AnnotationVisitor
visitEnd
in interface org.objectweb.asm.ClassVisitor
visitEnd
in interface org.objectweb.asm.FieldVisitor
visitEnd
in interface org.objectweb.asm.MethodVisitor
visitEnd
in interface org.objectweb.asm.signature.SignatureVisitor
public void visitFormalTypeParameter(String name)
visitFormalTypeParameter
in interface org.objectweb.asm.signature.SignatureVisitor
public org.objectweb.asm.signature.SignatureVisitor visitClassBound()
visitClassBound
in interface org.objectweb.asm.signature.SignatureVisitor
public org.objectweb.asm.signature.SignatureVisitor visitInterfaceBound()
visitInterfaceBound
in interface org.objectweb.asm.signature.SignatureVisitor
public org.objectweb.asm.signature.SignatureVisitor visitSuperclass()
visitSuperclass
in interface org.objectweb.asm.signature.SignatureVisitor
public org.objectweb.asm.signature.SignatureVisitor visitInterface()
visitInterface
in interface org.objectweb.asm.signature.SignatureVisitor
public org.objectweb.asm.signature.SignatureVisitor visitParameterType()
visitParameterType
in interface org.objectweb.asm.signature.SignatureVisitor
public org.objectweb.asm.signature.SignatureVisitor visitReturnType()
visitReturnType
in interface org.objectweb.asm.signature.SignatureVisitor
public org.objectweb.asm.signature.SignatureVisitor visitExceptionType()
visitExceptionType
in interface org.objectweb.asm.signature.SignatureVisitor
public void visitBaseType(char descriptor)
visitBaseType
in interface org.objectweb.asm.signature.SignatureVisitor
public void visitTypeVariable(String name)
visitTypeVariable
in interface org.objectweb.asm.signature.SignatureVisitor
public org.objectweb.asm.signature.SignatureVisitor visitArrayType()
visitArrayType
in interface org.objectweb.asm.signature.SignatureVisitor
public void visitClassType(String name)
visitClassType
in interface org.objectweb.asm.signature.SignatureVisitor
public void visitInnerClassType(String name)
visitInnerClassType
in interface org.objectweb.asm.signature.SignatureVisitor
public void visitTypeArgument()
visitTypeArgument
in interface org.objectweb.asm.signature.SignatureVisitor
public org.objectweb.asm.signature.SignatureVisitor visitTypeArgument(char wildcard)
visitTypeArgument
in interface org.objectweb.asm.signature.SignatureVisitor
public Set getClasses()
Copyright © 2002-2012 Apache Software Foundation. All Rights Reserved.