org.objectweb.asm.util
public class ASMifierAbstractVisitor extends AbstractVisitor
| Field Summary | |
|---|---|
| protected String | name
The name of the variable for this visitor in the produced code. |
| Constructor Summary | |
|---|---|
| protected | ASMifierAbstractVisitor(String name)
Constructs a new ASMifierAbstractVisitor.
|
| Method Summary | |
|---|---|
| AnnotationVisitor | visitAnnotation(String desc, boolean visible)
Prints the ASM code that generates the given annotation.
|
| void | visitAttribute(Attribute attr)
Prints the ASM code that generates the given attribute.
|
| void | visitEnd()
Prints the ASM code to end the visit. |
Parameters: name the name of the variable for this visitor in the produced code.
Parameters: desc the class descriptor of the annotation class. visible true if the annotation is visible at runtime.
Returns: a visitor to visit the annotation values.
Parameters: attr an attribute.