Subversion Repositories XServices

Rev

Rev 24 | Rev 59 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
24 brianR 1
<?xml version='1.0' encoding='UTF-8'?><section id="antproperty">
2
  <title>AntProperty type</title>
3
  <para>The AntProperty type defines a list of key/value pairs.</para>
4
  <para>The defining Java class is
5
  <ulink url="javadoc/net/brutex/xservices/types/AntProperty.html">
6
      <classname>net.brutex.xservices.types.AntProperty</classname></ulink>.</para>
25 brianR 7
&schemadefinition;
24 brianR 8
    <programlisting language="xml"><![CDATA[
9
<xs:complexType name="antProperty">
10
   <xs:sequence>
11
      <xs:element name="name" type="xs:string"/>
12
      <xs:element name="value" type="xs:string"/>
13
   </xs:sequence>
14
</xs:complexType>]]>
15
        </programlisting>
25 brianR 16
&examplexml;
24 brianR 17
    <programlisting language="xml"><![CDATA[
18
<AntProperty>
19
    <name>key2</name>
20
    <value>value2</value>
21
</AntProperty>]]>
22
</programlisting>
25 brianR 23
 
24 brianR 24
</section>