Package javanet.staxutils.events
Class NotationDeclarationEvent
- java.lang.Object
-
- javanet.staxutils.events.AbstractXMLEvent
-
- javanet.staxutils.events.NotationDeclarationEvent
-
- All Implemented Interfaces:
Serializable,Cloneable,ExtendedXMLEvent,NotationDeclaration,XMLEvent,XMLStreamConstants
public class NotationDeclarationEvent extends AbstractXMLEvent implements NotationDeclaration
NotationDeclarationimplementation.- Version:
- $Revision: 1.2 $
- Author:
- Christian Niles
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringnameThe notation name.protected StringpublicIdThe public id of the notationprotected StringsystemIdThe system id of the notation-
Fields inherited from class javanet.staxutils.events.AbstractXMLEvent
location, schemaType
-
Fields inherited from interface javax.xml.stream.XMLStreamConstants
ATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT
-
-
Constructor Summary
Constructors Constructor Description NotationDeclarationEvent(String name, String publicId, String systemId, Location location)NotationDeclarationEvent(String name, String publicId, Location location)NotationDeclarationEvent(NotationDeclaration that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetEventType()StringgetName()StringgetPublicId()StringgetSystemId()-
Methods inherited from class javanet.staxutils.events.AbstractXMLEvent
asCharacters, asEndElement, asStartElement, clone, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, matches, toString, writeAsEncodedUnicode, writeEvent
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javax.xml.stream.events.XMLEvent
asCharacters, asEndElement, asStartElement, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
-
-
-
-
Constructor Detail
-
NotationDeclarationEvent
public NotationDeclarationEvent(String name, String publicId, Location location)
-
NotationDeclarationEvent
public NotationDeclarationEvent(String name, String publicId, String systemId, Location location)
-
NotationDeclarationEvent
public NotationDeclarationEvent(NotationDeclaration that)
-
-
Method Detail
-
getEventType
public int getEventType()
- Specified by:
getEventTypein interfaceXMLEvent
-
getName
public String getName()
- Specified by:
getNamein interfaceNotationDeclaration
-
getPublicId
public String getPublicId()
- Specified by:
getPublicIdin interfaceNotationDeclaration
-
getSystemId
public String getSystemId()
- Specified by:
getSystemIdin interfaceNotationDeclaration
-
-