You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/05/25 22:07:53 UTC

svn commit: r1127666 - /commons/sandbox/digester3/trunk/src/test/resources/org/apache/commons/digester3/xmlrules/testrules.xml

Author: simonetripodi
Date: Wed May 25 20:07:53 2011
New Revision: 1127666

URL: http://svn.apache.org/viewvc?rev=1127666&view=rev
Log:
minor format

Modified:
    commons/sandbox/digester3/trunk/src/test/resources/org/apache/commons/digester3/xmlrules/testrules.xml

Modified: commons/sandbox/digester3/trunk/src/test/resources/org/apache/commons/digester3/xmlrules/testrules.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/test/resources/org/apache/commons/digester3/xmlrules/testrules.xml?rev=1127666&r1=1127665&r2=1127666&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/test/resources/org/apache/commons/digester3/xmlrules/testrules.xml (original)
+++ commons/sandbox/digester3/trunk/src/test/resources/org/apache/commons/digester3/xmlrules/testrules.xml Wed May 25 20:07:53 2011
@@ -1,5 +1,5 @@
 <?xml version="1.0"?>
-
+<!DOCTYPE digester-rules PUBLIC "-//Jakarta Apache //DTD digester-rules XML V1.0//EN" "http://jakarta.apache.org/commons/digester/dtds/digester-rules.dtd">
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
@@ -16,23 +16,22 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-
-<!DOCTYPE digester-rules PUBLIC "-//Jakarta Apache //DTD digester-rules XML V1.0//EN" "http://jakarta.apache.org/commons/digester/dtds/digester-rules.dtd">
 <digester-rules>
-    <pattern value="root/foo">
-        <object-create-rule classname="org.apache.commons.digester3.xmlrules.ObjectTestImpl"/>
-        <set-next-rule methodname="add" paramtype="java.lang.Object"/>
-        <set-properties-rule/>
-        <include path="classpath:org/apache/commons/digester3/xmlrules/testrulesinclude.xml"/>
-        <include class="org.apache.commons.digester3.xmlrules.DigesterRulesSourceTestImpl"/>
-        <pattern value="call-method-rule-tests">
-            <call-method-rule pattern="longValue" methodname="setLongValue" paramcount="0" paramtypes="java.lang.Long"/>
-            <call-method-rule pattern="defaultParamType" methodname="setStringValue" paramcount="0"/>
-            <call-method-rule pattern="pushIt" methodname="push"/>
-            <call-method-rule pattern="mapValue" methodname="setMapValue" paramcount="2" paramtypes="java.lang.String,java.lang.String"/>
-                <call-param-rule pattern="mapValue" attrname="name" paramnumber="0" />
-                <call-param-rule pattern="mapValue" paramnumber="1"/>
-        </pattern>
-                <bean-property-setter-rule pattern="property" name="property"/>
+  <pattern value="root/foo">
+    <object-create-rule classname="org.apache.commons.digester3.xmlrules.ObjectTestImpl" />
+    <set-next-rule methodname="add" paramtype="java.lang.Object" />
+    <set-properties-rule />
+    <include path="classpath:org/apache/commons/digester3/xmlrules/testrulesinclude.xml" />
+    <include class="org.apache.commons.digester3.xmlrules.DigesterRulesSourceTestImpl" />
+    <pattern value="call-method-rule-tests">
+      <call-method-rule pattern="longValue" methodname="setLongValue" paramcount="0" paramtypes="java.lang.Long" />
+      <call-method-rule pattern="defaultParamType" methodname="setStringValue" paramcount="0" />
+      <call-method-rule pattern="pushIt" methodname="push" />
+      <call-method-rule pattern="mapValue" methodname="setMapValue" paramcount="2"
+        paramtypes="java.lang.String,java.lang.String" />
+      <call-param-rule pattern="mapValue" attrname="name" paramnumber="0" />
+      <call-param-rule pattern="mapValue" paramnumber="1" />
     </pattern>
+    <bean-property-setter-rule pattern="property" name="property" />
+  </pattern>
 </digester-rules>