<?xml version="1.0" encoding="UTF-8"?> <section id="antproperty"> <title>AntProperty type</title> <para>The AntProperty type defines a list of key/value pairs.</para> <para> The defining Java class is <ulink url="javadoc/net/brutex/xservices/types/AntProperty.html"> <classname>net.brutex.xservices.types.AntProperty</classname> </ulink> . </para> <programlisting language="xml"><![CDATA[ <xs:complexType name="antProperty"> <xs:sequence> <xs:element name="name" type="xs:string"/> <xs:element name="value" type="xs:string"/> </xs:sequence> </xs:complexType>]]> </programlisting> <programlisting language="xml"><![CDATA[ <AntProperty> <name>key2</name> <value>value2</value> </AntProperty>]]> </programlisting> </section>