:: com :: sun :: star :: xml :: sax ::

interface XDTDHandler

Methods' Summary
notationDecl receives notification of a notation declaration event.  
unparsedEntityDecl receives notification of an unparsed entity declaration event.  
Methods' Details
notationDecl
void
notationDecl( [in] string  sName,
[in] string  sPublicId,
[in] string  sSystemId );

Description
receives notification of a notation declaration event.
unparsedEntityDecl
void
unparsedEntityDecl( [in] string  sName,
[in] string  sPublicId,
[in] string  sSystemId,
[in] string  sNotationName );

Description
receives notification of an unparsed entity declaration event.
Top of Page