diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-07-14 07:39:54 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-07-14 07:39:54 +0000 |
commit | 815a0f5f3f8427ec04f31c22278a6456ed94873c (patch) | |
tree | 7f6a574870b05b5cd850620a73e53e5341b45e78 | |
parent | 70b090ea63f4b1fba4828aff36b6b6633a883d82 (diff) |
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
-rw-r--r-- | offapi/com/sun/star/xml/UserDefinedAttributesSupplier.idl | 70 |
1 files changed, 70 insertions, 0 deletions
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 <com/sun/star/container/XNameContainer.idl> +#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 <type>AttributeData</type> elements + that represent uninterpreted XML attributes. + + <p>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.</p> + + <p>The + <type scope="com::sun::star::container">XNameContainer</type> + supports the service <type>AttributeContainer</type>.</p> + + */ + [property] ::com::sun::star::container::XNameContainer UserDefinedAttributes; +}; + +}; }; }; }; + +#endif |