Class XSNotationDecl
- java.lang.Object
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.xs.XSNotationDecl
-
- All Implemented Interfaces:
XSNotationDeclaration,XSObject
public class XSNotationDecl extends Object implements XSNotationDeclaration
The XML representation for a NOTATION declaration schema component is a global <notation> element information item- Version:
- $Id$
- Author:
- Rahul Srivastava, Sun Microsystems Inc.
-
-
Field Summary
Fields Modifier and Type Field Description XSObjectListfAnnotationsStringfNameStringfPublicIdStringfSystemIdStringfTargetNamespace
-
Constructor Summary
Constructors Constructor Description XSNotationDecl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XSAnnotationgetAnnotation()Optional.XSObjectListgetAnnotations()Optional.StringgetName()Thenameof thisXSObjectdepending on theXSObjecttype.StringgetNamespace()The namespace URI of this node, ornullif it is unspecified.XSNamespaceItemgetNamespaceItem()A namespace schema information item corresponding to the target namespace of the component, if it is globally declared; ornullotherwise.StringgetPublicId()Optional if {system identifier} is present.StringgetSystemId()Optional if {public identifier} is present.shortgetType()Get the type of the object, i.e ELEMENT_DECLARATION.
-
-
-
Field Detail
-
fName
public String fName
-
fTargetNamespace
public String fTargetNamespace
-
fPublicId
public String fPublicId
-
fSystemId
public String fSystemId
-
fAnnotations
public XSObjectList fAnnotations
-
-
Method Detail
-
getType
public short getType()
Get the type of the object, i.e ELEMENT_DECLARATION.
-
getName
public String getName()
Thenameof thisXSObjectdepending on theXSObjecttype.
-
getNamespace
public String getNamespace()
The namespace URI of this node, ornullif it is unspecified. defines how a namespace URI is attached to schema components.- Specified by:
getNamespacein interfaceXSObject
-
getSystemId
public String getSystemId()
Optional if {public identifier} is present. A URI reference.- Specified by:
getSystemIdin interfaceXSNotationDeclaration
-
getPublicId
public String getPublicId()
Optional if {system identifier} is present. A public identifier, as defined in [XML 1.0 (Second Edition)].- Specified by:
getPublicIdin interfaceXSNotationDeclaration
-
getAnnotation
public XSAnnotation getAnnotation()
Optional. Annotation.- Specified by:
getAnnotationin interfaceXSNotationDeclaration
-
getAnnotations
public XSObjectList getAnnotations()
Optional. Annotations.- Specified by:
getAnnotationsin interfaceXSNotationDeclaration
-
getNamespaceItem
public XSNamespaceItem getNamespaceItem()
Description copied from interface:XSObjectA namespace schema information item corresponding to the target namespace of the component, if it is globally declared; ornullotherwise.- Specified by:
getNamespaceItemin interfaceXSObject- See Also:
XSObject.getNamespaceItem()
-
-