/** ThisclassdeliberatelydoesnotsupportXWeak,toimproveperformancewhenloading largedocuments.
*/ class XMLOFF_DLLPUBLIC SvXMLImportContext : public css::xml::sax::XFastContextHandler, public css::lang::XTypeProvider
/** A contexts constructor does anything that is required if an element *starts.Namespaceprocessinghasbeendonealready. *Notethatvirtualmethodscannotbeusedinsideconstructors.Use
* StartElement instead if this is required. */
SvXMLImportContext( SvXMLImport& rImport );
/** A contexts destructor does anything that is required if an element *ends.Bydefault,nothingisdone. *Notethatvirtualmethodscannotbeusedinsidedestructors.Use
* EndElement instead if this is required. */ virtual ~SvXMLImportContext();
/** endFastElement is called before a context will be destructed, but *afteranelementscontexthasbeenparsed.Itmaybeusedforactions
* that require virtual methods. The default is to do nothing. */ virtualvoid SAL_CALL endFastElement(sal_Int32 Element) override;
/** This method is called for all characters that are contained in the
* current element. The default is to ignore them. */ virtualvoid SAL_CALL characters(const OUString & aChars) override;
// XInterface virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) final override; virtualvoid SAL_CALL acquire() noexcept final override
{ osl_atomic_increment(&m_nRefCount); } virtualvoid SAL_CALL release() noexcept final override
{ if (osl_atomic_decrement(&m_nRefCount) == 0) deletethis; }
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.