1 23 24 package com.sun.enterprise.deployment.annotation.impl; 25 26 import java.lang.annotation.ElementType ; 27 import java.lang.reflect.AnnotatedElement ; 28 29 35 class StackElement { 36 37 private final ElementType type; 38 private final AnnotatedElement element; 39 40 41 public StackElement(ElementType type, AnnotatedElement element) { 42 this.type = type; 43 this.element = element; 44 } 45 46 ElementType getElementType() { 47 return type; 48 } 49 50 AnnotatedElement getAnnotatedElement() { 51 return element; 52 } 53 54 } 55 | Popular Tags |