[jboss-cvs] microkernel/src/resources/org/jboss/test/javabean/test ...

Adrian Brock adrian.brock at jboss.com
Tue Jul 11 07:11:38 EDT 2006


  User: adrian  
  Date: 06/07/11 07:11:38

  Modified:    src/resources/org/jboss/test/javabean/test 
                        TestConfigure.xml
  Log:
  [JBMICROCONT-95] - Use the full javabean convention for property names.
  i.e. getXYZ is a property called XYZ not xYZ
  
  Revision  Changes    Path
  1.3       +11 -11    microkernel/src/resources/org/jboss/test/javabean/test/TestConfigure.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TestConfigure.xml
  ===================================================================
  RCS file: /cvsroot/jboss/microkernel/src/resources/org/jboss/test/javabean/test/TestConfigure.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- TestConfigure.xml	6 Jul 2006 06:17:10 -0000	1.2
  +++ TestConfigure.xml	11 Jul 2006 11:11:38 -0000	1.3
  @@ -1,17 +1,17 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
   <javabean xmlns="urn:jboss:javabean:1.0" class="org.jboss.test.javabean.support.SimpleBean">
  -   <property name="aString">StringValue</property>
  -   <property name="aByte">12</property>
  -   <property name="aBoolean">true</property>
  -   <property name="aShort">123</property>
  +   <property name="AString">StringValue</property>
  +   <property name="AByte">12</property>
  +   <property name="ABoolean">true</property>
  +   <property name="AShort">123</property>
      <property name="anInt">1234</property>
  -   <property name="aLong">12345</property>
  -   <property name="aFloat">3.14</property>
  -   <property name="aDouble">3.14e12</property>
  -   <property name="aDate">Mon Jan 01 00:00:00 CET 2001</property>
  -   <property name="aBigDecimal">12e4</property>
  -   <property name="aBigInteger">123456</property>
  +   <property name="ALong">12345</property>
  +   <property name="AFloat">3.14</property>
  +   <property name="ADouble">3.14e12</property>
  +   <property name="ADate">Mon Jan 01 00:00:00 CET 2001</property>
  +   <property name="ABigDecimal">12e4</property>
  +   <property name="ABigInteger">123456</property>
      <property name="abyte">12</property>
      <property name="aboolean">true</property>
      <property name="ashort">123</property>
  @@ -19,7 +19,7 @@
      <property name="along">12345</property>
      <property name="afloat">3.14</property>
      <property name="adouble">3.14e12</property>
  -   <property name="aNumber" class="java.lang.Long">12345</property>
  +   <property name="ANumber" class="java.lang.Long">12345</property>
      <property name="overloadedProperty">StringValue</property>
      <property name="XYZ">XYZ</property>
      <property name="abc">abc</property>
  
  
  



More information about the jboss-cvs-commits mailing list