summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/xml/Attribute.idl
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-01-10 11:44:14 +0000
committerOliver Bolte <obo@openoffice.org>2008-01-10 11:44:14 +0000
commit9a6cb0959ccda393c21f911c0ae4149d4ca3b242 (patch)
tree613b030ccbf0bd2c1f4221db26a77fe314f3a176 /offapi/com/sun/star/xml/Attribute.idl
parentdda3f0dfc3358777db5b9c36448e1a45a72e7357 (diff)
INTEGRATION: CWS xmlfilter02 (1.1.2); FILE ADDED
2007/03/01 17:30:58 cl 1.1.2.1: new struct to store an attribute including local name and namespace
Diffstat (limited to 'offapi/com/sun/star/xml/Attribute.idl')
-rw-r--r--offapi/com/sun/star/xml/Attribute.idl69
1 files changed, 69 insertions, 0 deletions
diff --git a/offapi/com/sun/star/xml/Attribute.idl b/offapi/com/sun/star/xml/Attribute.idl
new file mode 100644
index 000000000000..b08dd23446f0
--- /dev/null
+++ b/offapi/com/sun/star/xml/Attribute.idl
@@ -0,0 +1,69 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: Attribute.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: obo $ $Date: 2008-01-10 12:44:14 $
+ *
+ * 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_Attribute_idl__
+#define __com_sun_star_xml_Attribute_idl__
+
+//=============================================================================
+
+module com { module sun { module star { module xml {
+
+//=============================================================================
+
+/**
+ * A struct to keep information of an element's attribute.
+ */
+struct Attribute
+{
+ /**
+ * the attribute name
+ */
+ string Name;
+
+ /**
+ * the attribute namespace URL
+ */
+ string NamespaceURL;
+
+ /**
+ * the attribute value
+ */
+ string Value;
+};
+
+//=============================================================================
+
+}; }; }; };
+
+#endif