Subversion Repositories XServices

Rev

Rev 25 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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