summaryrefslogtreecommitdiff
path: root/xmlsecurity/inc/xmlsec/saxhelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/inc/xmlsec/saxhelper.hxx')
-rw-r--r--xmlsecurity/inc/xmlsec/saxhelper.hxx14
1 files changed, 14 insertions, 0 deletions
diff --git a/xmlsecurity/inc/xmlsec/saxhelper.hxx b/xmlsecurity/inc/xmlsec/saxhelper.hxx
index 8068d8bf35d7..6814ede6d826 100644
--- a/xmlsecurity/inc/xmlsec/saxhelper.hxx
+++ b/xmlsecurity/inc/xmlsec/saxhelper.hxx
@@ -45,27 +45,41 @@ class SAXHelper final
void setCurrentNode(const xmlNodePtr pNode);
xmlDocPtr getDocument() { return m_pParserCtxt->myDoc;}
+ /// @throws css::xml::sax::SAXException
+ /// @throws css::uno::RuntimeException
void startDocument()
throw( css::xml::sax::SAXException , css::uno::RuntimeException ) ;
+ /// @throws css::xml::sax::SAXException
+ /// @throws css::uno::RuntimeException
void endDocument()
throw( css::xml::sax::SAXException , css::uno::RuntimeException ) ;
+ /// @throws css::xml::sax::SAXException
+ /// @throws css::uno::RuntimeException
void startElement(
const OUString& aName ,
const css::uno::Sequence<
css::xml::csax::XMLAttribute >& aAttributes )
throw( css::xml::sax::SAXException , css::uno::RuntimeException ) ;
+ /// @throws css::xml::sax::SAXException
+ /// @throws css::uno::RuntimeException
void endElement( const OUString& aName )
throw( css::xml::sax::SAXException , css::uno::RuntimeException ) ;
+ /// @throws css::xml::sax::SAXException
+ /// @throws css::uno::RuntimeException
void characters( const OUString& aChars )
throw( css::xml::sax::SAXException , css::uno::RuntimeException ) ;
+ /// @throws css::xml::sax::SAXException
+ /// @throws css::uno::RuntimeException
void ignorableWhitespace( const OUString& aWhitespaces )
throw( css::xml::sax::SAXException , css::uno::RuntimeException ) ;
+ /// @throws css::xml::sax::SAXException
+ /// @throws css::uno::RuntimeException
void processingInstruction(
const OUString& aTarget ,
const OUString& aData )