Update ooo320-m1
[ooovba.git] / xmloff / inc / DomBuilderContext.hxx
blob6c6f9445b401984d31ed4381d6b7d262c3c7bb7a
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: DomBuilderContext.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _XMLOFF_DOMBUILDERCONTEXT_HXX
32 #define _XMLOFF_DOMBUILDERCONTEXT_HXX
36 // include for parent class and members
39 #include <xmloff/xmlictxt.hxx>
43 // forward declarations
46 namespace com { namespace sun { namespace star {
47 namespace xml { namespace dom {
48 class XNode;
49 class XDocument;
50 } }
51 namespace xml { namespace sax {
52 class XAttributeList;
53 } }
54 } } }
55 namespace rtl {
56 class OUString;
58 class SvXMLImport;
59 class SvXMLImportContext;
61 /**
62 * DomBuilderContext creates a DOM tree suitable for in-memory processing of
63 * XML data from a sequence of SAX events */
64 class DomBuilderContext : public SvXMLImportContext
66 com::sun::star::uno::Reference<com::sun::star::xml::dom::XNode> mxNode;
68 public:
70 /** default constructor: create new DOM tree */
71 DomBuilderContext( SvXMLImport& rImport,
72 USHORT nPrefix,
73 const ::rtl::OUString& rLocalName );
75 /** constructor: create DOM subtree under the given node */
76 DomBuilderContext( SvXMLImport& rImport,
77 USHORT nPrefix,
78 const ::rtl::OUString& rLocalName,
79 com::sun::star::uno::Reference<com::sun::star::xml::dom::XNode>& );
81 virtual ~DomBuilderContext();
85 // access to the DOM tree
88 /** access the DOM tree */
89 com::sun::star::uno::Reference<com::sun::star::xml::dom::XDocument> getTree();
91 /** access this context's DOM sub-tree */
92 com::sun::star::uno::Reference<com::sun::star::xml::dom::XNode> getNode();
96 // implement SvXMLImportContext methods:
99 virtual SvXMLImportContext* CreateChildContext(
100 USHORT nPrefix,
101 const rtl::OUString& rLocalName,
102 const com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList >& xAttrList );
104 virtual void StartElement(
105 const com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList>& xAttrList );
107 virtual void EndElement();
109 virtual void Characters( const ::rtl::OUString& rChars );
112 #endif