Subversion Repositories XServices

Rev

Rev 24 | Rev 59 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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