XMLParserItf Interface CATISAXDeclHandler

Usage: you can freely reimplement this interface.


interface CATISAXDeclHandler

Interface to receive notification of DTD declaration events.

This is an optional extension handler for SAX2 to provide information about DTD declarations in an XML document. XML readers are not required to support this handler, and this handler is not included in the core SAX2 distribution.

Note that data-related DTD declarations (unparsed entities and notations) are already reported through the interface.

If you are using the declaration handler together with a lexical handler, all of the events will occur between the and the events.

To set the CATISAXDeclHandler for an CATISAXXMLReader, use the method with the propertyId "http://xml.org/sax/properties/declaration-handler". If the reader does not support declaration events, it will return a error or a error when you attempt to register the handler.

See also:
,


Method Index


o AttributeDecl(CATUnicodeString&,CATUnicodeString&,CATUnicodeString&,CATUnicodeString&,CATUnicodeString&)
Receives notification of an attribute type declaration.
o ElementDecl(CATUnicodeString&,CATUnicodeString&)
Receives notification of an element type declaration.
o ExternalEntityDecl(CATUnicodeString&,CATUnicodeString&,CATUnicodeString&)
Receives notification of an external entity declaration.
o InternalEntityDecl(CATUnicodeString&,CATUnicodeString&)
Receives notification of an internal entity declaration.

Methods


o AttributeDecl
public virtual AttributeDecl( const iElementName,
const iAttributeName,
const iType,
const iValueDefault,
const iValue)
Receives notification of an attribute type declaration.

Only the effective (first) declaration for an attribute will be reported. The type will be one of the strings "CDATA", "ID", "IDREF", "IDREFS", "NMTOKEN", "NMTOKENS", "ENTITY", "ENTITIES", a parenthesized token group with the separator "|" and all whitespace removed, or the word "NOTATION" followed by a space followed by a parenthesized token group with all whitespace removed.

Any parameter entities in the attribute value will be expanded, but general entities will not.

Parameters:
iElementName
The name of the associated element.
iAttributeName
The name of the attribute.
iType
A string representing the attribute type.
iValueDefault
A string representing the attribute default ("#IMPLIED", "#REQUIRED", or "#FIXED") or an empty string if none of these applies.
iValue
A string representing the attribute's default value, or an empty string if there is none.
Errors Returned:
Error Class Error Id Description
XMLParserERR_2000 The method can raise a CATSAXException
o ElementDecl
public virtual ElementDecl( const iName,
const iModel)
Receives notification of an element type declaration.

The content model will consist of the string "EMPTY", the string "ANY", or a parenthesised group, optionally followed by an occurrence indicator. The model will be normalized so that all parameter entities are fully resolved and all whitespace is removed, and will include the enclosing parentheses. Other normalization (such as removing redundant parentheses or simplifying occurrence indicators) is at the discretion of the parser.

Parameters:
iName
The element type name.
iModel
The content model as a normalized string.
Errors Returned:
Error Class Error Id Description
XMLParserERR_2000 The method can raise a CATSAXException
o ExternalEntityDecl
public virtual ExternalEntityDecl( const iName,
const iPublicId,
const iSystemId)
Receives notification of an external entity declaration.

Only the effective (first) declaration for each entity will be reported.

Parameters:
iName
The name of the entity. If it is a parameter entity, the name will begin with '%'.
iPublicId
The declared public identifier of the entity, or an empty string if none was declared.
iSystemId
The declared system identifier of the entity.
Errors Returned:
Error Class Error Id Description
XMLParserERR_2000 The method can raise a CATSAXException
o InternalEntityDecl
public virtual InternalEntityDecl( const iName,
const iValue)
Receives notification of an internal entity declaration.

Only the effective (first) declaration for each entity will be reported. All parameter entities in the value will be expanded, but general entities will not.

Parameters:
iName
The name of the entity. If it is a parameter entity, the name will begin with '%'.
iValue
The replacement text of the entity.
Errors Returned:
Error Class Error Id Description
XMLParserERR_2000 The method can raise a CATSAXException

This object is included in the file: CATISAXDeclHandler.h
If needed, your Imakefile.mk should include the module: CatXmlItfBase

Copyright © 1999-2014, Dassault Systèmes. All rights reserved.