| com.bm.ejb3metadata.annotations.analyzer.classes.JavaxEjbMessageDrivenVisitor
JavaxEjbMessageDrivenVisitor | public class JavaxEjbMessageDrivenVisitor extends AbsCommonEjbVisitor implements AnnotationType(Code) | | This class manages the handling of @
javax.ejb.MessageDriven annotation.
author: Daniel Wiese |
Inner Class :class ActivationConfigPropertyVisitor extends EmptyVisitor | |
Field Summary | |
final public static String | TYPE Type of annotation. |
TYPE | final public static String TYPE(Code) | | Type of annotation.
|
JavaxEjbMessageDrivenVisitor | public JavaxEjbMessageDrivenVisitor(ClassAnnotationMetadata classAnnotationMetadata)(Code) | | Constructor.
Parameters: classAnnotationMetadata - linked to a class metadata |
getType | public String getType()(Code) | | type of the annotation (its description) |
visit | public void visit(String name, Object value)(Code) | | Visits a primitive value of the annotation.
Parameters: name - the value name. Parameters: value - the actual value, whose type must be Byte,Boolean, Character, Short,Integer, Long, Float, Double,String or Type. |
visitAnnotation | public AnnotationVisitor visitAnnotation(String name, String desc)(Code) | | Visits a nested annotation value of the annotation.
Parameters: name - the value name. Parameters: desc - the class descriptor of the nested annotation class. a non null visitor to visit the actual nested annotation value.The nested annotation value must be fully visited beforecalling other methods on this annotation visitor. |
visitArray | public AnnotationVisitor visitArray(String name)(Code) | | Visits an array value of the annotation.
Parameters: name - the value name. a non null visitor to visit the actual array value elements. The'name' parameters passed to the methods of this visitor areignored. All the array values must be visited before callingother methods on this annotation visitor. |
visitEnd | public void visitEnd()(Code) | | Visits the end of the annotation. Creates the object and store it
|
visitEnum | public void visitEnum(String name, String desc, String value)(Code) | | Visits an enumeration value of the annotation.
Parameters: name - the value name. Parameters: desc - the class descriptor of the enumeration class. Parameters: value - the actual enumeration value. |
|
|