1 23 24 package com.sun.enterprise.deployment.annotation.context; 25 26 import java.util.Stack ; 27 import java.lang.reflect.AnnotatedElement ; 28 import java.lang.annotation.ElementType ; 29 30 import com.sun.enterprise.deployment.annotation.AnnotatedElementHandler; 31 import com.sun.enterprise.deployment.annotation.AnnotationProcessorException; 32 import com.sun.enterprise.deployment.annotation.ProcessingContext; 33 34 40 public class AnnotationContext implements AnnotatedElementHandler { 41 42 ProcessingContext processingContext; 43 44 45 public AnnotationContext() { 46 } 47 48 public void setProcessingContext(ProcessingContext processingContext) { 49 this.processingContext = processingContext; 50 } 51 52 public ProcessingContext getProcessingContext() { 53 return processingContext; 54 } 55 56 public void startElement(ElementType type, AnnotatedElement element) 57 throws AnnotationProcessorException { 58 } 59 60 public void endElement(ElementType type, AnnotatedElement element) 61 throws AnnotationProcessorException { 62 } 63 64 65 } 66 | Popular Tags |