Subversion Repositories XServices

Rev

Rev 25 | Go to most recent revision | Details | 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>
7
  <section>
8
    <title>Schema description</title>
9
    <programlisting language="xml"><![CDATA[
10
<xs:complexType name="antProperty">
11
   <xs:sequence>
12
      <xs:element name="name" type="xs:string"/>
13
      <xs:element name="value" type="xs:string"/>
14
   </xs:sequence>
15
</xs:complexType>]]>
16
        </programlisting>
17
  </section>
18
  <section>
19
    <title>Example XML </title>
20
    <programlisting language="xml"><![CDATA[
21
<AntProperty>
22
    <name>key2</name>
23
    <value>value2</value>
24
</AntProperty>]]>
25
</programlisting>
26
  </section>
27
</section>