Class ImportAnnotationVisitor
- java.lang.Object
-
- org.objectweb.asm.AnnotationVisitor
-
- de.inetsoftware.jwebassembly.emulator.ImportAnnotationVisitor
-
class ImportAnnotationVisitor extends org.objectweb.asm.AnnotationVisitor
Scan the values of an Import annotation
-
-
Field Summary
Fields Modifier and Type Field Description private ImportAnnotation
anno
-
Constructor Summary
Constructors Constructor Description ImportAnnotationVisitor(java.lang.String className, java.lang.String methodName, java.lang.String descriptor, java.util.Map<java.lang.String,ImportAnnotation> annotations)
Create an instance and add an ImportAnnotation to the container.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
visit(java.lang.String name, java.lang.Object value)
-
-
-
Field Detail
-
anno
private ImportAnnotation anno
-
-
Constructor Detail
-
ImportAnnotationVisitor
public ImportAnnotationVisitor(java.lang.String className, java.lang.String methodName, java.lang.String descriptor, java.util.Map<java.lang.String,ImportAnnotation> annotations)
Create an instance and add an ImportAnnotation to the container.- Parameters:
className
- the name of the class in the internal form of fully qualified class. For example, "java/util/List".methodName
- method namedescriptor
- the method's descriptor (seeType
).annotations
- container for found annotations, key is method name with signature
-
-