Subversion Repositories XServices

Rev

Rev 59 | Details | Compare with Previous | Last modification | View Log | RSS feed

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