org.codehaus.enunciate.contract.jaxb
Interface ElementDeclaration

All Superinterfaces:
com.sun.mirror.declaration.Declaration
All Known Implementing Classes:
LocalElementDeclaration, RootElementDeclaration

public interface ElementDeclaration
extends com.sun.mirror.declaration.Declaration

Common interface for an element declaration.

Author:
Ryan Heaton

Method Summary
 java.lang.String getName()
          The name of the xml element declaration.
 java.lang.String getNamespace()
          The namespace of the xml element.
 javax.xml.namespace.QName getQname()
          The qname for this root element.
 
Methods inherited from interface com.sun.mirror.declaration.Declaration
accept, equals, getAnnotation, getAnnotationMirrors, getDocComment, getModifiers, getPosition, getSimpleName
 

Method Detail

getName

java.lang.String getName()
The name of the xml element declaration.

Returns:
The name of the xml element declaration.

getNamespace

java.lang.String getNamespace()
The namespace of the xml element.

Returns:
The namespace of the xml element.

getQname

javax.xml.namespace.QName getQname()
The qname for this root element.

Returns:
The qname for this root element.