1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 module com
{ module sun
{ module star
{ module xml
{ module sax
{
25 /** this interface does not conform to the SAX-standard.
27 <p>Note: Whether or not every callback is supported is dependent
28 on the parser implementation.
30 published
interface XExtendedDocumentHandler
: com
::sun
::star
::xml
::sax
::XDocumentHandler
32 /** receives notification about the start of a CDATA section in the
35 <p>Any string coming in via character handler may include chars,
36 that would otherwise be interpreted as markup. </p>
39 raises
( com
::sun
::star
::xml
::sax
::SAXException
);
41 /** informs about the end of a CDATA-Section.
43 <p>Note that <code>startCDATA/endCDATA</code> MUST NOT enclose any
44 <code>startElement/endElement</code>-call!</p>
47 raises
( com
::sun
::star
::xml
::sax
::SAXException
);
49 /** receives notification about a comment in the XML-source.
51 void comment
( [in] string sComment
)
52 raises
( com
::sun
::star
::xml
::sax
::SAXException
);
54 /** informs a writer that it is allowable to insert a line break and
55 indentation before the next XDocumentHandler-call.
58 raises
( com
::sun
::star
::xml
::sax
::SAXException
);
60 /** notifies that any characters that cannot be handled by other callback
61 methods are announced through this method.
63 void unknown
( [in] string sString
)
64 raises
( com
::sun
::star
::xml
::sax
::SAXException
);
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */