Interface XSNotationDeclaration
-
- All Superinterfaces:
XSObject
- All Known Implementing Classes:
XSNotationDecl
public interface XSNotationDeclaration extends XSObject
This interface represents the Notation Declaration schema component.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XSAnnotation
getAnnotation()
An annotation if it exists, otherwisenull
.XSObjectList
getAnnotations()
A sequence of [annotations] or an emptyXSObjectList
.String
getPublicId()
The string representing the public identifier for this notation declaration, if present;null
otherwise.String
getSystemId()
The URI reference representing the system identifier for the notation declaration, if present,null
otherwise.-
Methods inherited from interface org.smooks.engine.delivery.sax.ng.org.apache.xerces.xs.XSObject
getName, getNamespace, getNamespaceItem, getType
-
-
-
-
Method Detail
-
getSystemId
String getSystemId()
The URI reference representing the system identifier for the notation declaration, if present,null
otherwise.
-
getPublicId
String getPublicId()
The string representing the public identifier for this notation declaration, if present;null
otherwise.
-
getAnnotation
XSAnnotation getAnnotation()
An annotation if it exists, otherwisenull
. If not null then the first [annotation] from the sequence of annotations.
-
getAnnotations
XSObjectList getAnnotations()
A sequence of [annotations] or an emptyXSObjectList
.
-
-