Methods Summary |
---|
public XSAnnotation | getAnnotation()Optional. Annotation.
return (fAnnotations != null) ? (XSAnnotation) fAnnotations.item(0) : null;
|
public XSObjectList | getAnnotations()Optional. Annotations.
return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
|
public XSModelGroup | getModelGroup(){model group} A model group.
return fModelGroup;
|
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 XSNamespaceItem | getNamespaceItem()
// REVISIT: implement
return null;
|
public short | getType()Get the type of the object, i.e ELEMENT_DECLARATION.
return XSConstants.MODEL_GROUP_DEFINITION;
|