Uses of Class
com.conradroche.matra.data.DTDData

Packages that use DTDData
com.conradroche.dtd.parser   
com.conradroche.matra.data   
com.conradroche.matra.decl   
com.conradroche.matra.io   
com.conradroche.matra.parser   
 

Uses of DTDData in com.conradroche.dtd.parser
 

Methods in com.conradroche.dtd.parser with parameters of type DTDData
 ElementDecl ElementDeclReader.readElementDecl(DTDData data)
          Read the Element declaration from the data stream.
 boolean ElementDeclReader.isElementDeclStart(DTDData data)
          Checks if there is an element declaration at the current location of the data.
 Entity EntityDeclReader.readEntityDecl(DTDData data)
          Read the entity declarations from the data stream.
 boolean EntityDeclReader.isEntityDeclStart(DTDData data)
          Checks if there is an entity declaration at the current location of the data.
 Comment CommentReader.readComment(DTDData data)
          Read the comment from the data stream.
 boolean CommentReader.isCommentStart(DTDData data)
          Checks if there is a comment at the current location of the data.
 Notation NotationReader.readNotation(DTDData data)
          Read the notation declaration from the data stream.
 boolean NotationReader.isNotationStart(DTDData data)
          Checks if there is a notation declaration at the current location of the data.
 AttlistDecl AttlistReader.readAttlist(DTDData data)
          Read the Attribute list declaration from the data stream.
 boolean AttlistReader.isAttlistStart(DTDData data)
          Checks if there is an attribute list declaration at the current location of the data.
 

Uses of DTDData in com.conradroche.matra.data
 

Methods in com.conradroche.matra.data that return DTDData
 DTDData DTDData.readConditionalSect()
          Read the conditional section from the data stream.
 

Uses of DTDData in com.conradroche.matra.decl
 

Methods in com.conradroche.matra.decl with parameters of type DTDData
 void Attribute.readNextAttribute(DTDData AttDef)
          Read the attribute details from the given data.
 

Uses of DTDData in com.conradroche.matra.io
 

Methods in com.conradroche.matra.io that return DTDData
abstract  DTDData DTDSource.read()
          Method to perform the read operation on this source.
 DTDData DTDFile.read()
          Method to perform the read operation on this file source.
 DTDData DTDUrl.read()
          Method to perform the read operation on this url source.
 

Uses of DTDData in com.conradroche.matra.parser
 

Methods in com.conradroche.matra.parser with parameters of type DTDData
 Notation NotationReaderImpl.readNotation(DTDData data)
          Read the notation declaration from the data stream.
 boolean NotationReaderImpl.isNotationStart(DTDData data)
          Checks if there is a notation declaration at the beginning of the data.
 ElementDecl ElementDeclReaderImpl.readElementDecl(DTDData data)
          Read the Element declaration from the data stream.
 boolean ElementDeclReaderImpl.isElementDeclStart(DTDData data)
          Checks if there is an element declaration at the beginning of the data.
 Comment CommentReaderImpl.readComment(DTDData data)
          Read the comment from the data stream.
 boolean CommentReaderImpl.isCommentStart(DTDData data)
          Checks if there is a comment at the beginning of the data.
 Entity EntityDeclReaderImpl.readEntityDecl(DTDData data)
          Read the entity declarations from the data stream.
 boolean EntityDeclReaderImpl.isEntityDeclStart(DTDData data)
          Checks if there is an entity declaration at the current location of the data.
 AttlistDecl AttlistReaderImpl.readAttlist(DTDData data)
          Read the Attribute list declaration from the data stream.
 boolean AttlistReaderImpl.isAttlistStart(DTDData data)
          Checks if there is an attribute list declaration at the current location of the data.