Package com.ctc.wstx.evt
Class WDTD
- java.lang.Object
-
- org.codehaus.stax2.ri.evt.BaseEventImpl
-
- org.codehaus.stax2.ri.evt.DTDEventImpl
-
- com.ctc.wstx.evt.WDTD
-
- All Implemented Interfaces:
DTD
,XMLEvent
,XMLStreamConstants
,org.codehaus.stax2.evt.DTD2
,org.codehaus.stax2.evt.XMLEvent2
public class WDTD extends org.codehaus.stax2.ri.evt.DTDEventImpl
Event that contains all StAX accessible information read from internal and external DTD subsets.
-
-
Field Summary
-
Fields inherited from class org.codehaus.stax2.ri.evt.DTDEventImpl
mDTD, mFullText, mInternalSubset, mPublicId, mRootName, mSystemId
-
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 WDTD(Location loc, String fullText)
WDTD(Location loc, String rootName, String intSubset)
Constructor used when only partial information is available...WDTD(Location loc, String rootName, String sysId, String pubId, String intSubset)
WDTD(Location loc, String rootName, String sysId, String pubId, String intSubset, DTDSubset dtdSubset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<EntityDeclaration>
getEntities()
List<NotationDeclaration>
getNotations()
-
Methods inherited from class org.codehaus.stax2.ri.evt.DTDEventImpl
doGetDocumentTypeDeclaration, equals, getDocumentTypeDeclaration, getEventType, getInternalSubset, getProcessedDTD, getPublicId, getRootName, getSystemId, hashCode, writeAsEncodedUnicode, writeUsing
-
Methods inherited from class org.codehaus.stax2.ri.evt.BaseEventImpl
addHash, asCharacters, asEndElement, asStartElement, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, iteratedEquals, stringsWithNullsEqual, throwFromIOE, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, 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
-
-
-
-
Method Detail
-
getEntities
public List<EntityDeclaration> getEntities()
- Specified by:
getEntities
in interfaceDTD
- Overrides:
getEntities
in classorg.codehaus.stax2.ri.evt.DTDEventImpl
-
getNotations
public List<NotationDeclaration> getNotations()
- Specified by:
getNotations
in interfaceDTD
- Overrides:
getNotations
in classorg.codehaus.stax2.ri.evt.DTDEventImpl
-
-