Xml::MContentHandler Class Reference

class Xml::MContentHandler

This class defines the interface required by a client of the xml framework. It allows a client to be placed in a chain with other clients, i.e. a Parser, a Validator, or a User, and therefore allows the flow of information between these links. It provides callbacks analogous to that of the SAX 2.0 interface. http://www.saxproject.org/apidoc/

Member Functions Documentation

GetExtendedInterface(const TInt32)

TAny *GetExtendedInterface(const TInt32aUid)[pure virtual]

This method obtains the interface matching the specified uid.

Parameters

const TInt32 aUidthe uid identifying the required interface.

OnContentL(const TDesC8 &, TInt)

voidOnContentL(const TDesC8 &aBytes,
TIntaErrorCode
)[pure virtual]

This method is a callback that sends the content of the element. Not all the content may be returned in one go. The data may be sent in chunks. When an OnEndElementL is received this means there is no more content to be sent.

Parameters

const TDesC8 & aBytesis the raw content data for the element. The client is responsible for converting the data to the required character set if necessary. In some instances the content may be binary and must not be converted.
TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.

OnEndDocumentL(TInt)

voidOnEndDocumentL(TIntaErrorCode)[pure virtual]

This method is a callback to indicate the end of the document.

Parameters

TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.

OnEndElementL(const RTagInfo &, TInt)

voidOnEndElementL(const RTagInfo &aElement,
TIntaErrorCode
)[pure virtual]

This method is a callback to indicate the end of the element has been reached.

Parameters

const RTagInfo & aElementis a handle to the element's details.
TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.

OnEndPrefixMappingL(const RString &, TInt)

voidOnEndPrefixMappingL(const RString &aPrefix,
TIntaErrorCode
)[pure virtual]

This method is a notification of the end of the scope of a prefix-URI mapping. This method is called after the corresponding DoEndElementL method.

Parameters

const RString & aPrefixis the Namespace prefix that was mapped.
TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.

OnError(TInt)

voidOnError(TIntaErrorCode)[pure virtual]

This method indicates an error has occurred.

Parameters

TInt aErrorCodeis the error code

OnIgnorableWhiteSpaceL(const TDesC8 &, TInt)

voidOnIgnorableWhiteSpaceL(const TDesC8 &aBytes,
TIntaErrorCode
)[pure virtual]

This method is a notification of ignorable whitespace in element content.

Parameters

const TDesC8 & aBytesare the ignored bytes from the document being parsed.
TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.

OnProcessingInstructionL(const TDesC8 &, const TDesC8 &, TInt)

voidOnProcessingInstructionL(const TDesC8 &aTarget,
const TDesC8 &aData,
TIntaErrorCode
)[pure virtual]

This method is a receive notification of a processing instruction.

Parameters

const TDesC8 & aTargetis the processing instruction target.
const TDesC8 & aDatais the processing instruction data. If empty none was supplied.
TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.

OnSkippedEntityL(const RString &, TInt)

voidOnSkippedEntityL(const RString &aName,
TIntaErrorCode
)[pure virtual]

This method is a notification of a skipped entity. If the parser encounters an external entity it does not need to expand it - it can return the entity as aName for the client to deal with.

Parameters

const RString & aNameis the name of the skipped entity.
TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.

OnStartDocumentL(const RDocumentParameters &, TInt)

voidOnStartDocumentL(const RDocumentParameters &aDocParam,
TIntaErrorCode
)[pure virtual]

This method is a callback to indicate the start of the document.

Parameters

const RDocumentParameters & aDocParamSpecifies the various parameters of the document.
TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.

OnStartElementL(const RTagInfo &, const RAttributeArray &, TInt)

voidOnStartElementL(const RTagInfo &aElement,
const RAttributeArray &aAttributes,
TIntaErrorCode
)[pure virtual]

This method is a callback to indicate an element has been parsed.

Parameters

const RTagInfo & aElementis a handle to the element's details.
const RAttributeArray & aAttributescontains the attributes for the element.
TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.

OnStartPrefixMappingL(const RString &, const RString &, TInt)

voidOnStartPrefixMappingL(const RString &aPrefix,
const RString &aUri,
TIntaErrorCode
)[pure virtual]

This method is a notification of the beginning of the scope of a prefix-URI Namespace mapping. This method is always called before the corresponding OnStartElementL method.

Parameters

const RString & aPrefixis the Namespace prefix being declared.
const RString & aUriis the Namespace URI the prefix is mapped to.
TInt aErrorCodeis the error code. If this is not KErrNone then special action may be required.