From: Ales J. <ale...@ge...> - 2006-07-09 13:18:54
|
User: alesj Date: 06/07/09 09:18:49 Modified: src/resources/test/dd/spring jboss-spring.xml Log: Reformat code + Spring-MC fix. Revision Changes Path 1.2 +14 -6 jboss-spring/src/resources/test/dd/spring/jboss-spring.xml (In the diff below, changes in quantity of whitespace are not shown.) Index: jboss-spring.xml =================================================================== RCS file: /cvsroot/jboss/jboss-spring/src/resources/test/dd/spring/jboss-spring.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- jboss-spring.xml 23 Aug 2005 18:22:27 -0000 1.1 +++ jboss-spring.xml 9 Jul 2006 13:18:49 -0000 1.2 @@ -5,25 +5,31 @@ <!-- File line readers --> - <bean id="fileLineReader" class="org.jboss.tutorial.spring.FileLineReader" abstract="true" /> + <bean id="fileLineReader" class="org.jboss.tutorial.spring.FileLineReader" abstract="true"/> <bean id="randomFileLineReader" class="org.jboss.tutorial.spring.RandomFileWordsCreator" parent="fileLineReader" abstract="true"> - <property name="intCreator"><ref local="javaRandomIntCreator"/></property> + <property name="intCreator"> + <ref local="javaRandomIntCreator"/> + </property> </bean> <!-- Randomizer beans --> - <bean id="staticWordsCreator" class="org.jboss.tutorial.spring.StaticWordsCreator" /> + <bean id="staticWordsCreator" class="org.jboss.tutorial.spring.StaticWordsCreator"/> <bean id="fileWordsCreator" parent="fileLineReader"> - <property name="resource"><value>classpath:words.properties</value></property> + <property name="resource"> + <value>classpath:words.properties</value> + </property> </bean> <bean id="randomWordsCreator" parent="randomFileLineReader"> - <property name="resource"><value>classpath:words.properties</value></property> + <property name="resource"> + <value>classpath:words.properties</value> + </property> </bean> <bean id="stateIntCreator" class="org.jboss.tutorial.spring.DummyStateIntCreator"/> @@ -33,7 +39,9 @@ <!-- Horoscope --> <bean id="horoscopeSentenceCreator" parent="fileLineReader"> - <property name="resource"><value>classpath:horoscope.properties</value></property> + <property name="resource"> + <value>classpath:horoscope.properties</value> + </property> </bean> </beans> |