2000-11-02 14:51:18 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 22:06:16 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-11-02 14:51:18 +00:00
|
|
|
*
|
2008-04-10 22:06:16 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2000-11-02 14:51:18 +00:00
|
|
|
*
|
2008-04-10 22:06:16 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-11-02 14:51:18 +00:00
|
|
|
*
|
2008-04-10 22:06:16 +00:00
|
|
|
* $RCSfile: XMLIndexSpanEntryContext.cxx,v $
|
|
|
|
* $Revision: 1.6 $
|
2000-11-02 14:51:18 +00:00
|
|
|
*
|
2008-04-10 22:06:16 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-11-02 14:51:18 +00:00
|
|
|
*
|
2008-04-10 22:06:16 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-11-02 14:51:18 +00:00
|
|
|
*
|
2008-04-10 22:06:16 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-11-02 14:51:18 +00:00
|
|
|
*
|
2008-04-10 22:06:16 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-11-02 14:51:18 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 10:07:21 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_xmloff.hxx"
|
2000-11-02 14:51:18 +00:00
|
|
|
#include "XMLIndexSpanEntryContext.hxx"
|
2006-06-19 17:41:00 +00:00
|
|
|
#include <rtl/ustring.hxx>
|
2000-11-02 14:51:18 +00:00
|
|
|
#include "XMLIndexTemplateContext.hxx"
|
2007-06-27 14:59:23 +00:00
|
|
|
#include <xmloff/xmlictxt.hxx>
|
2000-11-02 14:51:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
using ::rtl::OUString;
|
|
|
|
using ::com::sun::star::uno::Sequence;
|
|
|
|
using ::com::sun::star::uno::Any;
|
|
|
|
using ::com::sun::star::beans::PropertyValue;
|
|
|
|
|
|
|
|
|
|
|
|
TYPEINIT1( XMLIndexSpanEntryContext, XMLIndexSimpleEntryContext);
|
|
|
|
|
|
|
|
XMLIndexSpanEntryContext::XMLIndexSpanEntryContext(
|
|
|
|
SvXMLImport& rImport,
|
|
|
|
XMLIndexTemplateContext& rTemplate,
|
|
|
|
sal_uInt16 nPrfx,
|
|
|
|
const OUString& rLocalName ) :
|
|
|
|
XMLIndexSimpleEntryContext(rImport, rTemplate.sTokenText,
|
|
|
|
rTemplate, nPrfx, rLocalName)
|
|
|
|
{
|
|
|
|
nValues++; // one more for the text string
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLIndexSpanEntryContext::~XMLIndexSpanEntryContext()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void XMLIndexSpanEntryContext::Characters(const OUString& sString)
|
|
|
|
{
|
|
|
|
sContent.append(sString);
|
|
|
|
}
|
|
|
|
|
|
|
|
void XMLIndexSpanEntryContext::FillPropertyValues(
|
|
|
|
Sequence<PropertyValue> & rValues)
|
|
|
|
{
|
|
|
|
// call superclass for token type, stylename,
|
|
|
|
XMLIndexSimpleEntryContext::FillPropertyValues(rValues);
|
|
|
|
|
|
|
|
// content
|
|
|
|
Any aAny;
|
|
|
|
aAny <<= sContent.makeStringAndClear();
|
|
|
|
rValues[nValues-1].Name = rTemplateContext.sText;
|
|
|
|
rValues[nValues-1].Value = aAny;
|
|
|
|
}
|
|
|
|
|