2010-02-15 21:06:47 +01:00
|
|
|
<?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>
|
2010-02-16 12:20:25 +01:00
|
|
|
&schemadefinition;
|
2010-02-15 21:06:47 +01:00
|
|
|
<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>
|
2010-02-16 12:20:25 +01:00
|
|
|
&examplexml;
|
2010-02-15 21:06:47 +01:00
|
|
|
<programlisting language="xml"><![CDATA[
|
|
|
|
<AntProperty>
|
|
|
|
<name>key2</name>
|
|
|
|
<value>value2</value>
|
|
|
|
</AntProperty>]]>
|
|
|
|
</programlisting>
|
2010-02-16 12:20:25 +01:00
|
|
|
|
2010-02-15 21:06:47 +01:00
|
|
|
</section>
|