FileDocCategorySizeDatePackage
AnnotatedElementHandler.javaAPI DocGlassfish v2 API3229Fri May 04 22:30:20 BST 2007com.sun.enterprise.deployment.annotation

AnnotatedElementHandler

public interface AnnotatedElementHandler
Provides notification when the annotation processor is visiting a new AnnotatedElement.
author
Jerome Dochez

Fields Summary
Constructors Summary
Methods Summary
public voidendElement(java.lang.annotation.ElementType type, java.lang.reflect.AnnotatedElement element)
After annotations for an annotated element are processed, the endElement is called with the annotated element value and its type

param
type the annotated element type (class, field, method...)
param
element the annotated element we are done visiting.
exception
AnnotationProcessorException;

public voidstartElement(java.lang.annotation.ElementType type, java.lang.reflect.AnnotatedElement element)
Before annotations for an annotated element are processed, the startElement is called with the annotated element value and its type

param
type the annotated element type (class, field, method...)
param
element the annotated element we are starting to visit.
exception
AnnotationProcessorException;