163bba73cSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 363bba73cSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 463bba73cSAndrew Rist * or more contributor license agreements. See the NOTICE file 563bba73cSAndrew Rist * distributed with this work for additional information 663bba73cSAndrew Rist * regarding copyright ownership. The ASF licenses this file 763bba73cSAndrew Rist * to you under the Apache License, Version 2.0 (the 863bba73cSAndrew Rist * "License"); you may not use this file except in compliance 963bba73cSAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 1163bba73cSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 1363bba73cSAndrew Rist * Unless required by applicable law or agreed to in writing, 1463bba73cSAndrew Rist * software distributed under the License is distributed on an 1563bba73cSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 1663bba73cSAndrew Rist * KIND, either express or implied. See the License for the 1763bba73cSAndrew Rist * specific language governing permissions and limitations 1863bba73cSAndrew Rist * under the License. 19cdf0e10cSrcweir * 2063bba73cSAndrew Rist *************************************************************/ 2163bba73cSAndrew Rist 2263bba73cSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_xmloff.hxx" 26cdf0e10cSrcweir #include <com/sun/star/xml/sax/SAXParseException.hpp> 27cdf0e10cSrcweir #include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp> 28cdf0e10cSrcweir #include <com/sun/star/xml/sax/SAXException.hpp> 29cdf0e10cSrcweir #include <com/sun/star/xml/sax/XDocumentHandler.hpp> 30cdf0e10cSrcweir #include <com/sun/star/xml/sax/XAttributeList.hpp> 31cdf0e10cSrcweir #include <com/sun/star/xml/sax/XLocator.hpp> 32cdf0e10cSrcweir #include <xmloff/nmspmap.hxx> 33cdf0e10cSrcweir #include <xmloff/xmlimp.hxx> 34cdf0e10cSrcweir #include <xmloff/xmlictxt.hxx> 35cdf0e10cSrcweir #include <tools/debug.hxx> 36cdf0e10cSrcweir 37cdf0e10cSrcweir using ::rtl::OUString; 38cdf0e10cSrcweir using ::rtl::OUStringBuffer; 39cdf0e10cSrcweir 40cdf0e10cSrcweir using namespace ::com::sun::star; 41cdf0e10cSrcweir 42cdf0e10cSrcweir DBG_NAME(SvXMLImportContext) 43cdf0e10cSrcweir TYPEINIT0( SvXMLImportContext ); 44cdf0e10cSrcweir SvXMLImportContext::SvXMLImportContext( SvXMLImport& rImp, sal_uInt16 nPrfx, 45cdf0e10cSrcweir const OUString& rLName ) : 46cdf0e10cSrcweir mrImport( rImp ), 47cdf0e10cSrcweir mnPrefix( nPrfx ), 48cdf0e10cSrcweir maLocalName( rLName ), 49cdf0e10cSrcweir mpRewindMap( 0 ) 50cdf0e10cSrcweir { 51cdf0e10cSrcweir DBG_CTOR(SvXMLImportContext,NULL); 52cdf0e10cSrcweir 53cdf0e10cSrcweir } 54cdf0e10cSrcweir 55cdf0e10cSrcweir SvXMLImportContext::~SvXMLImportContext() 56cdf0e10cSrcweir { 57cdf0e10cSrcweir 58cdf0e10cSrcweir DBG_DTOR(SvXMLImportContext,NULL); 59cdf0e10cSrcweir } 60cdf0e10cSrcweir 61cdf0e10cSrcweir SvXMLImportContext *SvXMLImportContext::CreateChildContext( sal_uInt16 nPrefix, 62cdf0e10cSrcweir const OUString& rLocalName, 63cdf0e10cSrcweir const uno::Reference< xml::sax::XAttributeList >& xAttrList ) 64cdf0e10cSrcweir { 65cdf0e10cSrcweir return mrImport.CreateContext( nPrefix, rLocalName, xAttrList ); 66cdf0e10cSrcweir } 67cdf0e10cSrcweir 68cdf0e10cSrcweir void SvXMLImportContext::StartElement( const uno::Reference< xml::sax::XAttributeList >& ) 69cdf0e10cSrcweir { 70cdf0e10cSrcweir } 71cdf0e10cSrcweir 72cdf0e10cSrcweir void SvXMLImportContext::EndElement() 73cdf0e10cSrcweir { 74cdf0e10cSrcweir } 75cdf0e10cSrcweir 76cdf0e10cSrcweir void SvXMLImportContext::Characters( const OUString& ) 77cdf0e10cSrcweir { 78cdf0e10cSrcweir } 79cdf0e10cSrcweir 80*f3b8b509SArmin Le Grand void SvXMLImportContext::onDemandRescueUsefulDataFromTemporary( const SvXMLImportContext& ) 81*f3b8b509SArmin Le Grand { 82*f3b8b509SArmin Le Grand } 83cdf0e10cSrcweir 84