@@ -237,7 +237,7 @@ is equivalent to the following properties:
<h5>default loading (semanticAttributes=true)</h5>
<h5>default loading (semanticAttributes=true)</h5>
<p>This entry in a build file:
<p>This entry in a build file:
<pre> <xmlproperty file="somefile.xml"
<pre> <xmlproperty file="somefile.xml" keepRoot="false"
semanticAttributes="true"/></pre>
semanticAttributes="true"/></pre>
is equivalent to the following entries in a build file:
is equivalent to the following entries in a build file:
<pre>
<pre>
@@ -246,22 +246,22 @@ is equivalent to the following entries in a build file:
<property name="build.classes" location="${build.folder}/classes" id="build.classes"/>
<property name="build.classes" location="${build.folder}/classes" id="build.classes"/>
<property name="build.reference" refid="build.classes"/>
<property name="build.reference" refid="build.classes"/>
<property name="run-time.jars" value="*.jar/>
<property name="run-time.jars" value="*.jar" />
<class path id="compile.classpath">
<path id="compile.classpath">
<pathelement location="${build.classes}"/>
<pathelement location="${build.classes}"/>
</class path>
</path>
<class path id="run-time.classpath">
<path id="run-time.classpath">
<path refid="compile.classpath"/>
<path refid="compile.classpath"/>
<pathelement path="${run-time.jars}"/>
<pathelement path="${run-time.jars}"/>
</class path>
</path>
</pre>
</pre>
<h5>includeSemanticAttribute="true"</h5>
<h5>includeSemanticAttribute="true"</h5>
<p>This entry in a build file:
<p>This entry in a build file:
<pre> <xmlproperty file="somefile.xml"
<pre> <xmlproperty file="somefile.xml"
semanticAttributes="true"
semanticAttributes="true" keepRoot="false"
includeSemanticAttribute="true"/>
includeSemanticAttribute="true"/>
</pre>
</pre>
is equivalent to the following entries in a build file:
is equivalent to the following entries in a build file:
@@ -269,18 +269,18 @@ is equivalent to the following entries in a build file:
<property name="version.value" value="0.0.1"/>
<property name="version.value" value="0.0.1"/>
<property name="build.folder" value="build"/>
<property name="build.folder" value="build"/>
<property name="build.classes.location" location="${build.folder}/classes"/>
<property name="build.classes.location" location="${build.folder}/classes"/>
<property name="build.reference.refid" refid="build.location "/>
<property name="build.reference.refid" refid="build.classes "/>
<property name="run-time.jars" value="*.jar/>
<property name="run-time.jars" value="*.jar" />
<class path id="compile.classpath">
<path id="compile.classpath">
<pathelement location="${build.classes}"/>
<pathelement location="${build.classes}"/>
</class path>
</path>
<class path id="run-time.classpath">
<path id="run-time.classpath">
<path refid="compile.classpath"/>
<path refid="compile.classpath"/>
<pathelement path="${run-time.jars}"/>
<pathelement path="${run-time.jars}"/>
</class path>
</path>
</pre>
</pre>