Package org.eclipse.jetty.annotations
Interface AnnotationParser.Handler
-
- All Known Implementing Classes:
AbstractDiscoverableAnnotationHandler
,AnnotationParser.AbstractHandler
,ClassInheritanceHandler
,ContainerInitializerAnnotationHandler
,WebFilterAnnotationHandler
,WebListenerAnnotationHandler
,WebServletAnnotationHandler
- Enclosing class:
- AnnotationParser
public static interface AnnotationParser.Handler
Signature for all handlers that respond to parsing class files.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(AnnotationParser.ClassInfo classInfo)
void
handle(AnnotationParser.ClassInfo info, java.lang.String annotationName)
void
handle(AnnotationParser.FieldInfo fieldInfo)
void
handle(AnnotationParser.FieldInfo info, java.lang.String annotationName)
void
handle(AnnotationParser.MethodInfo methodInfo)
void
handle(AnnotationParser.MethodInfo info, java.lang.String annotationName)
-
-
-
Method Detail
-
handle
void handle(AnnotationParser.ClassInfo classInfo)
-
handle
void handle(AnnotationParser.MethodInfo methodInfo)
-
handle
void handle(AnnotationParser.FieldInfo fieldInfo)
-
handle
void handle(AnnotationParser.ClassInfo info, java.lang.String annotationName)
-
handle
void handle(AnnotationParser.MethodInfo info, java.lang.String annotationName)
-
handle
void handle(AnnotationParser.FieldInfo info, java.lang.String annotationName)
-
-