1 23 24 package com.sun.enterprise.deployment.annotation; 25 26 import java.lang.annotation.Annotation ; 27 28 46 public interface AnnotationHandler { 47 48 51 public Class <? extends Annotation > getAnnotationType(); 52 53 61 public HandlerProcessingResult processAnnotation(AnnotationInfo element) 62 throws AnnotationProcessorException; 63 64 69 public Class <? extends Annotation >[] getTypeDependencies(); 70 71 } 72 | Popular Tags |