Methods Summary |
---|
public org.apache.xerces.xs.XSAnnotation | getAnnotation()Optional. Annotation.
return (fAnnotations != null) ? (XSAnnotation) fAnnotations.item(0) : null;
|
public org.apache.xerces.xs.XSObjectList | getAnnotations()Optional. Annotations.
return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
|
public java.lang.String | getName()The name of this XSObject depending on the
XSObject type.
return fName;
|
public java.lang.String | getNamespace()The namespace URI of this node, or null if it is
unspecified. defines how a namespace URI is attached to schema
components.
return fTargetNamespace;
|
public org.apache.xerces.xs.XSNamespaceItem | getNamespaceItem()
return null;
|
public java.lang.String | getPublicId()Optional if {system identifier} is present. A public identifier,
as defined in [XML 1.0 (Second Edition)].
return fPublicId;
|
public java.lang.String | getSystemId()Optional if {public identifier} is present. A URI reference.
return fSystemId;
|
public short | getType()Get the type of the object, i.e ELEMENT_DECLARATION.
return XSConstants.NOTATION_DECLARATION;
|