FileDocCategorySizeDatePackage
StackElement.javaAPI DocGlassfish v2 API2681Fri May 04 22:30:22 BST 2007com.sun.enterprise.deployment.annotation.impl

StackElement

public class StackElement extends Object
This class represent a stack element as the AnnotationContext will use to store the visited AnnotatedElements.
author
Jerome Dochez

Fields Summary
private final ElementType
type
private final AnnotatedElement
element
Constructors Summary
public StackElement(ElementType type, AnnotatedElement element)
Creates a new instance of StackElement

        this.type = type;
        this.element = element;
    
Methods Summary
java.lang.reflect.AnnotatedElementgetAnnotatedElement()

        return element;
    
java.lang.annotation.ElementTypegetElementType()

        return type;