1 23 24 package com.sun.enterprise.deployment.annotation; 25 26 import java.lang.annotation.ElementType ; 27 import java.lang.reflect.AnnotatedElement ; 28 29 30 36 public interface AnnotatedElementHandler { 37 38 47 public void startElement(ElementType type, AnnotatedElement element) 48 throws AnnotationProcessorException; 49 50 59 public void endElement(ElementType type, AnnotatedElement element) 60 throws AnnotationProcessorException; 61 62 } 63 | Popular Tags |