public class GenericVisitor
extends org.objectweb.asm.AnnotationVisitor
Modifier and Type | Field and Description |
---|---|
protected org.apache.felix.ipojo.metadata.Element |
element |
Constructor and Description |
---|
GenericVisitor(org.apache.felix.ipojo.metadata.Element element) |
Modifier and Type | Method and Description |
---|---|
void |
visit(String name,
Object value)
Visit a 'simple' annotation attribute.
|
org.objectweb.asm.AnnotationVisitor |
visitAnnotation(String name,
String descriptor)
Visit a sub-annotation.
|
org.objectweb.asm.AnnotationVisitor |
visitArray(String name)
Visit an array attribute.
|
void |
visitEnum(String name,
String desc,
String value)
Visits an enumeration attribute.
|
public GenericVisitor(org.apache.felix.ipojo.metadata.Element element)
public void visit(String name, Object value)
visit
in class org.objectweb.asm.AnnotationVisitor
name
- : attribute namevalue
- : attribute valueAnnotationVisitor.visit(String, Object)
public org.objectweb.asm.AnnotationVisitor visitAnnotation(String name, String descriptor)
visitAnnotation
in class org.objectweb.asm.AnnotationVisitor
name
- : attribute name.descriptor
- : annotation descriptionAnnotationVisitor.visitAnnotation(String, String)
public org.objectweb.asm.AnnotationVisitor visitArray(String name)
visitArray
in class org.objectweb.asm.AnnotationVisitor
name
- : attribute nameAnnotationVisitor.visitArray(String)
public void visitEnum(String name, String desc, String value)
visitEnum
in class org.objectweb.asm.AnnotationVisitor
name
- the attribute namedesc
- the enumeration descriptorvalue
- the attribute valueAnnotationVisitor.visitEnum(String, String, String)
Copyright © 2006–2023 The Apache Software Foundation. All rights reserved.