LibreOffice Module xmloff (master) 1
|
handle attributes through an SvXMLTokenMap More...
#include <TokenContext.hxx>
Public Member Functions | |
TokenContext (SvXMLImport &rImport) | |
virtual void SAL_CALL | startFastElement (sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList) override |
call HandleAttribute for each attribute in the token map; create a warning for all others. More... | |
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL | createFastChildContext (sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &AttrList) override |
call HandleChild for each child element in the token map; create a warning for all others. More... | |
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL | createUnknownChildContext (const OUString &Namespace, const OUString &Name, const css::uno::Reference< css::xml::sax::XFastAttributeList > &Attribs) override |
virtual void SAL_CALL | characters (const OUString &rChars) override |
Create a warning for all non-namespace character content. More... | |
Public Member Functions inherited from SvXMLImportContext | |
SvXMLImportContext (SvXMLImport &rImport) | |
A contexts constructor does anything that is required if an element starts. More... | |
virtual | ~SvXMLImportContext () |
A contexts destructor does anything that is required if an element ends. More... | |
virtual void SAL_CALL | startFastElement (sal_Int32 Element, const css::uno::Reference< css::xml::sax::XFastAttributeList > &Attribs) override |
virtual void SAL_CALL | startUnknownElement (const OUString &Namespace, const OUString &Name, const css::uno::Reference< css::xml::sax::XFastAttributeList > &Attribs) override |
virtual void SAL_CALL | endFastElement (sal_Int32 Element) override |
endFastElement is called before a context will be destructed, but after an elements context has been parsed. More... | |
virtual void SAL_CALL | endUnknownElement (const OUString &Namespace, const OUString &Name) override |
virtual css::uno::Reference< XFastContextHandler > SAL_CALL | createFastChildContext (sal_Int32 Element, const css::uno::Reference< css::xml::sax::XFastAttributeList > &Attribs) override |
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL | createUnknownChildContext (const OUString &Namespace, const OUString &Name, const css::uno::Reference< css::xml::sax::XFastAttributeList > &Attribs) override |
virtual void SAL_CALL | characters (const OUString &aChars) override |
This method is called for all characters that are contained in the current element. More... | |
virtual css::uno::Any SAL_CALL | queryInterface (const css::uno::Type &aType) final override |
virtual void SAL_CALL | acquire () noexcept final override |
virtual void SAL_CALL | release () noexcept final override |
virtual css::uno::Sequence< css::uno::Type > SAL_CALL | getTypes () final override |
virtual css::uno::Sequence< sal_Int8 > SAL_CALL | getImplementationId () final override |
Protected Member Functions | |
virtual void | HandleAttribute (const sax_fastparser::FastAttributeList::FastAttributeIter &aIter)=0 |
will be called for each attribute More... | |
virtual SvXMLImportContext * | HandleChild (sal_Int32 nElementToken, const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList)=0 |
will be called for each child element More... | |
Protected Member Functions inherited from SvXMLImportContext | |
SvXMLImport & | GetImport () |
const SvXMLImport & | GetImport () const |
handle attributes through an SvXMLTokenMap
Definition at line 33 of file TokenContext.hxx.
TokenContext::TokenContext | ( | SvXMLImport & | rImport | ) |
Definition at line 33 of file TokenContext.cxx.
|
overridevirtual |
Create a warning for all non-namespace character content.
Classes that wish to deal with character content have to override this method anyway, and will thus get rid of the warnings.
Reimplemented from SvXMLImportContext.
Definition at line 79 of file TokenContext.cxx.
References SvXMLImportContext::GetImport(), lcl_IsWhiteSpace(), and XMLERROR_UNKNOWN_CHARACTERS.
|
overridevirtual |
call HandleChild for each child element in the token map; create a warning for all others.
Classes that wish to override CreateChildContext may want to call the parent method for handling of defaults.
Reimplemented from SvXMLImportContext.
Reimplemented in XFormsInstanceContext.
Definition at line 51 of file TokenContext.cxx.
References SvXMLImportContext::GetImport(), HandleChild(), and XMLERROR_UNKNOWN_ELEMENT.
|
overridevirtual |
Reimplemented from SvXMLImportContext.
Reimplemented in XFormsInstanceContext.
Definition at line 64 of file TokenContext.cxx.
References SvXMLImportContext::GetImport(), Name, and XMLERROR_UNKNOWN_ELEMENT.
|
protectedpure virtual |
will be called for each attribute
Implemented in SchemaContext, SchemaRestrictionContext, SchemaSimpleTypeContext, XFormsBindContext, XFormsInstanceContext, XFormsModelContext, and XFormsSubmissionContext.
Referenced by startFastElement().
|
protectedpure virtual |
will be called for each child element
Implemented in SchemaContext, SchemaRestrictionContext, SchemaSimpleTypeContext, XFormsBindContext, XFormsInstanceContext, XFormsModelContext, and XFormsSubmissionContext.
Referenced by createFastChildContext().
|
overridevirtual |
call HandleAttribute for each attribute in the token map; create a warning for all others.
Classes that wish to override StartElement need to call the parent method.
Reimplemented from SvXMLImportContext.
Reimplemented in XFormsBindContext.
Definition at line 38 of file TokenContext.cxx.
References sax_fastparser::castToFastAttributeList(), and HandleAttribute().
Referenced by XFormsBindContext::startFastElement().