From 815a0f5f3f8427ec04f31c22278a6456ed94873c Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Fri, 14 Jul 2006 07:39:54 +0000 Subject: INTEGRATION: CWS tl21 (1.1.2); FILE ADDED 2006/05/31 10:11:43 tl 1.1.2.1: #i50628# add description of property UserDefinedAttributes to slected services by using css.xml.UserDefinedAttributesSupplier --- .../sun/star/xml/UserDefinedAttributesSupplier.idl | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 offapi/com/sun/star/xml/UserDefinedAttributesSupplier.idl diff --git a/offapi/com/sun/star/xml/UserDefinedAttributesSupplier.idl b/offapi/com/sun/star/xml/UserDefinedAttributesSupplier.idl new file mode 100644 index 000000000000..b2ba74b8207d --- /dev/null +++ b/offapi/com/sun/star/xml/UserDefinedAttributesSupplier.idl @@ -0,0 +1,70 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: UserDefinedAttributesSupplier.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: obo $ $Date: 2006-07-14 08:39:54 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library 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 for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + ************************************************************************/ +#ifndef _com_sun_star_xml_UserDefinedAttributesSupplier_idl_ +#define _com_sun_star_xml_UserDefinedAttributesSupplier_idl_ + +#ifndef __com_sun_star_container_XNameContainer_idl__ +#include +#endif + +module com { module sun { module star { module xml { + +/** A component that supports this service preserves XML attributes, + unknown by its parser, that belong to the XML element representing + it (the component). + + @since OOo 2.0.4 +*/ +published service UserDefinedAttributesSupplier +{ + /** This container holds the AttributeData elements + that represent uninterpreted XML attributes. + +

The idea behind this property is that a parser can stow + away all attributes that it cannot handle by itself on reading + an XML file. When the file is stored again, the unknown + attributes can be written back without loss.

+ +

The + XNameContainer + supports the service AttributeContainer.

+ + */ + [property] ::com::sun::star::container::XNameContainer UserDefinedAttributes; +}; + +}; }; }; }; + +#endif -- cgit