27 lines
893 B
XML
27 lines
893 B
XML
|
<?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>
|
||
|
<section>
|
||
|
<title>Schema description</title>
|
||
|
<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>
|
||
|
</section>
|
||
|
<section>
|
||
|
<title>Example XML </title>
|
||
|
<programlisting language="xml"><![CDATA[
|
||
|
<AntProperty>
|
||
|
<name>key2</name>
|
||
|
<value>value2</value>
|
||
|
</AntProperty>]]>
|
||
|
</programlisting>
|
||
|
</section>
|
||
|
</section>
|