Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/bugs/other/Jira273BeanFactory.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/bugs/other/Jira273BeanFactory.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/bugs/other/Jira273BeanFactory.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/bugs/other/Jira273BeanFactory.java
 Fri Mar  8 22:30:51 2013
@@ -33,6 +33,7 @@ public class Jira273BeanFactory {
      */
     public static Object createAnnonymousOverriden() {
         return new PublicBeanWithMethod() {
+            @Override
             public String getBeanValue() {
                 return "AnnonymousOverriden";
             }
@@ -98,6 +99,7 @@ public class Jira273BeanFactory {
         }
     }
     private static class PrivatePublicOverriden extends PublicBeanWithMethod {
+        @Override
         public String getBeanValue() {
             return "PrivatePublicOverriden";
         }
@@ -105,6 +107,7 @@ public class Jira273BeanFactory {
     private static class PrivatePublicNotOverriden extends 
PublicBeanWithMethod {
     }
     private static class PrivatePrivatePublicOverriden extends 
PrivatePublicNotOverriden {
+        @Override
         public String getBeanValue() {
             return "PrivatePrivatePublicOverriden";
         }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ArrayConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ArrayConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ArrayConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ArrayConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -49,10 +49,12 @@ public class ArrayConverterTestCase exte
     }
 
     /** Set Up */
+    @Override
     public void setUp() throws Exception {
     }
 
     /** Tear Down */
+    @Override
     public void tearDown() throws Exception {
     }
 

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/BigDecimalConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/BigDecimalConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/BigDecimalConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/BigDecimalConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -42,6 +42,7 @@ public class BigDecimalConverterTestCase
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
         numbers[0] = new BigDecimal("-12");
@@ -54,20 +55,24 @@ public class BigDecimalConverterTestCase
         return new TestSuite(BigDecimalConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }
 
     // ------------------------------------------------------------------------
 
+    @Override
     protected NumberConverter makeConverter() {
         return new BigDecimalConverter();
     }
 
+    @Override
     protected NumberConverter makeConverter(Object defaultValue) {
         return new BigDecimalConverter(defaultValue);
     }
 
+    @Override
     protected Class getExpectedType() {
         return BigDecimal.class;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/BigIntegerConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/BigIntegerConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/BigIntegerConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/BigIntegerConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -41,6 +41,7 @@ public class BigIntegerConverterTestCase
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
         numbers[0] = new BigInteger("-12");
@@ -53,20 +54,24 @@ public class BigIntegerConverterTestCase
         return new TestSuite(BigIntegerConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }
 
     // ------------------------------------------------------------------------
 
+    @Override
     protected NumberConverter makeConverter() {
         return new BigIntegerConverter();
     }
 
+    @Override
     protected NumberConverter makeConverter(Object defaultValue) {
         return new BigIntegerConverter(defaultValue);
     }
 
+    @Override
     protected Class getExpectedType() {
         return BigInteger.class;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ByteConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ByteConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ByteConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ByteConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -40,6 +40,7 @@ public class ByteConverterTestCase exten
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
         numbers[0] = new Byte("-12");
@@ -52,19 +53,23 @@ public class ByteConverterTestCase exten
         return new TestSuite(ByteConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }
 
     // ------------------------------------------------------------------------
 
+    @Override
     protected NumberConverter makeConverter() {
         return new ByteConverter();
     }
 
+    @Override
     protected NumberConverter makeConverter(Object defaultValue) {
         return new ByteConverter(defaultValue);
     }
+    @Override
     protected Class getExpectedType() {
         return Byte.class;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/CalendarConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/CalendarConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/CalendarConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/CalendarConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -49,6 +49,7 @@ public class CalendarConverterTestCase e
      * Create the Converter with no default value.
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter() {
         return new CalendarConverter();
     }
@@ -58,6 +59,7 @@ public class CalendarConverterTestCase e
      * @param defaultValue The default value
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter(Object defaultValue) {
         return new CalendarConverter(defaultValue);
     }
@@ -66,6 +68,7 @@ public class CalendarConverterTestCase e
      * Return the expected type
      * @return The expected type
      */
+    @Override
     protected Class getExpectedType() {
         return Calendar.class;
     }
@@ -76,6 +79,7 @@ public class CalendarConverterTestCase e
      * @param value The Date value to convert
      * @return The converted value
      */
+    @Override
     protected Object toType(Calendar value) {
         return value;
    }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/CharacterConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/CharacterConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/CharacterConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/CharacterConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -47,10 +47,12 @@ public class CharacterConverterTestCase 
     }
 
     /** Set Up */
+    @Override
     public void setUp() throws Exception {
     }
 
     /** Tear Down */
+    @Override
     public void tearDown() throws Exception {
     }
 

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ClassConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ClassConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ClassConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ClassConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -48,10 +48,12 @@ public class ClassConverterTestCase exte
     }
 
     /** Set Up */
+    @Override
     public void setUp() throws Exception {
     }
 
     /** Tear Down */
+    @Override
     public void tearDown() throws Exception {
     }
 

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/DateConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/DateConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/DateConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/DateConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -47,10 +47,12 @@ public class DateConverterTestCase exten
     }
 
     /** Set Up */
+    @Override
     public void setUp() throws Exception {
     }
 
     /** Tear Down */
+    @Override
     public void tearDown() throws Exception {
     }
 
@@ -60,6 +62,7 @@ public class DateConverterTestCase exten
      * Create the Converter with no default value.
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter() {
         return new DateConverter();
     }
@@ -69,6 +72,7 @@ public class DateConverterTestCase exten
      * @param defaultValue The default value
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter(Object defaultValue) {
         return new DateConverter(defaultValue);
     }
@@ -77,6 +81,7 @@ public class DateConverterTestCase exten
      * Return the expected type
      * @return The expected type
      */
+    @Override
     protected Class getExpectedType() {
         return Date.class;
     }
@@ -87,6 +92,7 @@ public class DateConverterTestCase exten
      * @param value The Calendar value to convert
      * @return The converted value
      */
+    @Override
     protected Object toType(Calendar value) {
         return value.getTime();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/DoubleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/DoubleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/DoubleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/DoubleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -40,6 +40,7 @@ public class DoubleConverterTestCase ext
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
         numbers[0] = new Double("-12");
@@ -52,20 +53,24 @@ public class DoubleConverterTestCase ext
         return new TestSuite(DoubleConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }
 
     // ------------------------------------------------------------------------
 
+    @Override
     protected NumberConverter makeConverter() {
         return new DoubleConverter();
     }
 
+    @Override
     protected NumberConverter makeConverter(Object defaultValue) {
         return new DoubleConverter(defaultValue);
     }
 
+    @Override
     protected Class getExpectedType() {
         return Double.class;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/FileConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/FileConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/FileConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/FileConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -43,6 +43,7 @@ public class FileConverterTestCase exten
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
     }
@@ -51,6 +52,7 @@ public class FileConverterTestCase exten
         return new TestSuite(FileConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/FloatConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/FloatConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/FloatConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/FloatConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -40,6 +40,7 @@ public class FloatConverterTestCase exte
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
         numbers[0] = new Float("-12");
@@ -52,20 +53,24 @@ public class FloatConverterTestCase exte
         return new TestSuite(FloatConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }
 
     // ------------------------------------------------------------------------
 
+    @Override
     protected NumberConverter makeConverter() {
         return new FloatConverter();
     }
 
+    @Override
     protected NumberConverter makeConverter(Object defaultValue) {
         return new FloatConverter(defaultValue);
     }
 
+    @Override
     protected Class getExpectedType() {
         return Float.class;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/IntegerConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/IntegerConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/IntegerConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/IntegerConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -40,6 +40,7 @@ public class IntegerConverterTestCase ex
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
         numbers[0] = new Integer("-12");
@@ -52,20 +53,24 @@ public class IntegerConverterTestCase ex
         return new TestSuite(IntegerConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }
 
     // ------------------------------------------------------------------------
 
+    @Override
     protected NumberConverter makeConverter() {
         return new IntegerConverter();
     }
 
+    @Override
     protected NumberConverter makeConverter(Object defaultValue) {
         return new IntegerConverter(defaultValue);
     }
 
+    @Override
     protected Class getExpectedType() {
         return Integer.class;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/LongConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/LongConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/LongConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/LongConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -40,6 +40,7 @@ public class LongConverterTestCase exten
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
         numbers[0] = new Long("-12");
@@ -52,20 +53,24 @@ public class LongConverterTestCase exten
         return new TestSuite(LongConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }
 
     // ------------------------------------------------------------------------
 
+    @Override
     protected NumberConverter makeConverter() {
         return new LongConverter();
     }
 
+    @Override
     protected NumberConverter makeConverter(Object defaultValue) {
         return new LongConverter(defaultValue);
     }
 
+    @Override
     protected Class getExpectedType() {
         return Long.class;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/NumberConverterTestBase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/NumberConverterTestBase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/NumberConverterTestBase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/NumberConverterTestBase.java
 Fri Mar  8 22:30:51 2013
@@ -211,6 +211,7 @@ public abstract class NumberConverterTes
 
         // Invalid Type (will try via String)
         Object obj =  new Object() {
+            @Override
             public String toString() {
                 return "dsdgsdsdg";
             }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ShortConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ShortConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ShortConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/ShortConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -40,6 +40,7 @@ public class ShortConverterTestCase exte
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
         numbers[0] = new Short("-12");
@@ -52,20 +53,24 @@ public class ShortConverterTestCase exte
         return new TestSuite(ShortConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }
 
     // ------------------------------------------------------------------------
 
+    @Override
     protected NumberConverter makeConverter() {
         return new ShortConverter();
     }
 
+    @Override
     protected NumberConverter makeConverter(Object defaultValue) {
         return new ShortConverter(defaultValue);
     }
 
+    @Override
     protected Class getExpectedType() {
         return Short.class;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlDateConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlDateConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlDateConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlDateConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -53,6 +53,7 @@ public class SqlDateConverterTestCase ex
     /**
      * Test default String to java.sql.Date conversion
      */
+    @Override
     public void testDefaultStringToTypeConvert() {
 
         // Create & Configure the Converter
@@ -90,6 +91,7 @@ public class SqlDateConverterTestCase ex
      * Create the Converter with no default value.
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter() {
         return new SqlDateConverter();
     }
@@ -99,6 +101,7 @@ public class SqlDateConverterTestCase ex
      * @param defaultValue The default value
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter(Object defaultValue) {
         return new SqlDateConverter(defaultValue);
     }
@@ -107,6 +110,7 @@ public class SqlDateConverterTestCase ex
      * Return the expected type
      * @return The expected type
      */
+    @Override
     protected Class getExpectedType() {
         return Date.class;
     }
@@ -117,6 +121,7 @@ public class SqlDateConverterTestCase ex
      * @param value The Calendar value to convert
      * @return The converted value
      */
+    @Override
     protected Object toType(Calendar value) {
         return new java.sql.Date(getTimeInMillis(value));
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlTimeConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlTimeConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlTimeConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlTimeConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -54,6 +54,7 @@ public class SqlTimeConverterTestCase ex
     /**
      * Test Date Converter with no default value
      */
+    @Override
     public void testLocale() {
 
         // Re-set the default Locale to Locale.US
@@ -92,6 +93,7 @@ public class SqlTimeConverterTestCase ex
     /**
      * Test default String to java.sql.Time conversion
      */
+    @Override
     public void testDefaultStringToTypeConvert() {
 
         // Create & Configure the Converter
@@ -112,6 +114,7 @@ public class SqlTimeConverterTestCase ex
      * Create the Converter with no default value.
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter() {
         return new SqlTimeConverter();
     }
@@ -121,6 +124,7 @@ public class SqlTimeConverterTestCase ex
      * @param defaultValue The default value
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter(Object defaultValue) {
         return new SqlTimeConverter(defaultValue);
     }
@@ -129,6 +133,7 @@ public class SqlTimeConverterTestCase ex
      * Return the expected type
      * @return The expected type
      */
+    @Override
     protected Class getExpectedType() {
         return Time.class;
     }
@@ -139,6 +144,7 @@ public class SqlTimeConverterTestCase ex
      * @param value The Calendar value to convert
      * @return The converted value
      */
+    @Override
     protected Object toType(Calendar value) {
         return new Time(getTimeInMillis(value));
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlTimestampConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlTimestampConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlTimestampConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/SqlTimestampConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -54,6 +54,7 @@ public class SqlTimestampConverterTestCa
     /**
      * Test Date Converter with no default value
      */
+    @Override
     public void testLocale() {
 
         // Re-set the default Locale to Locale.US
@@ -87,6 +88,7 @@ public class SqlTimestampConverterTestCa
     /**
      * Test default String to java.sql.Timestamp conversion
      */
+    @Override
     public void testDefaultStringToTypeConvert() {
 
         // Create & Configure the Converter
@@ -109,6 +111,7 @@ public class SqlTimestampConverterTestCa
      * Create the Converter with no default value.
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter() {
         return new SqlTimestampConverter();
     }
@@ -118,6 +121,7 @@ public class SqlTimestampConverterTestCa
      * @param defaultValue The default value
      * @return A new Converter
      */
+    @Override
     protected DateTimeConverter makeConverter(Object defaultValue) {
         return new SqlTimestampConverter(defaultValue);
     }
@@ -126,6 +130,7 @@ public class SqlTimestampConverterTestCa
      * Return the expected type
      * @return The expected type
      */
+    @Override
     protected Class getExpectedType() {
         return Timestamp.class;
     }
@@ -136,6 +141,7 @@ public class SqlTimestampConverterTestCa
      * @param value The Calendar value to convert
      * @return The converted value
      */
+    @Override
     protected Object toType(Calendar value) {
         return new Timestamp(getTimeInMillis(value));
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/URLConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/URLConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/URLConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/converters/URLConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -43,6 +43,7 @@ public class URLConverterTestCase extend
 
     // ------------------------------------------------------------------------
 
+    @Override
     public void setUp() throws Exception {
         converter = makeConverter();
     }
@@ -51,6 +52,7 @@ public class URLConverterTestCase extend
         return new TestSuite(URLConverterTestCase.class);
     }
 
+    @Override
     public void tearDown() throws Exception {
         converter = null;
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/expression/DefaultResolverTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/expression/DefaultResolverTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/expression/DefaultResolverTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/expression/DefaultResolverTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -67,12 +67,14 @@ public class DefaultResolverTestCase ext
     /**
      * Set Up
      */
+    @Override
     protected void setUp() {
     }
 
     /**
      * Tear Down
      */
+    @Override
     protected void tearDown() {
     }
 

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleBeanUtilsTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleBeanUtilsTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleBeanUtilsTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleBeanUtilsTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -49,6 +49,7 @@ public class LocaleBeanUtilsTestCase ext
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() {
     }
 
@@ -65,6 +66,7 @@ public class LocaleBeanUtilsTestCase ext
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
     }
 

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleBeanificationTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleBeanificationTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleBeanificationTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleBeanificationTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -75,6 +75,7 @@ public class LocaleBeanificationTestCase
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() {
 
         LocaleConvertUtils.deregister();
@@ -93,6 +94,7 @@ public class LocaleBeanificationTestCase
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         // No action required
     }
@@ -201,6 +203,7 @@ public class LocaleBeanificationTestCase
 
             GetBeanUtilsBeanThread() {}
 
+            @Override
             public void run() {
                 beanUtils = LocaleBeanUtilsBean.getLocaleBeanUtilsInstance();
                 convertUtils = LocaleConvertUtilsBean.getInstance();
@@ -208,6 +211,7 @@ public class LocaleBeanificationTestCase
                 LogFactory.releaseAll();
             }
 
+            @Override
             public String toString() {
                 return "GetBeanUtilsBeanThread";
             }
@@ -270,12 +274,14 @@ public class LocaleBeanificationTestCase
                 this.signal = signal;
             }
 
+            @Override
             public void run() {
                 signal.setSignal(2);
                 
signal.setBean(LocaleBeanUtilsBean.getLocaleBeanUtilsInstance());
                 signal.setConvertUtils(LocaleConvertUtilsBean.getInstance());
             }
 
+            @Override
             public String toString() {
                 return "GetBeanUtilsBeanThread";
             }
@@ -316,12 +322,14 @@ public class LocaleBeanificationTestCase
                 this.ccll = ccll;
             }
 
+            @Override
             public void run() {
                 ccll.set(new Integer(1789));
                 signal.setSignal(2);
                 signal.setMarkerObject(ccll.get());
             }
 
+            @Override
             public String toString() {
                 return "CCLLTesterThread";
             }
@@ -357,6 +365,7 @@ public class LocaleBeanificationTestCase
                 this.bean = bean;
             }
 
+            @Override
             public void run() {
                 try {
                     signal.setSignal(3);
@@ -375,6 +384,7 @@ public class LocaleBeanificationTestCase
                 }
             }
 
+            @Override
             public String toString() {
                 return "TestIndependenceThread";
             }
@@ -422,12 +432,14 @@ public class LocaleBeanificationTestCase
                 this.bean = bean;
             }
 
+            @Override
             public void run() {
                 LocaleBeanUtilsBean.setInstance(bean);
                 signal.setSignal(21);
                 
signal.setBean(LocaleBeanUtilsBean.getLocaleBeanUtilsInstance());
             }
 
+            @Override
             public String toString() {
                 return "SetInstanceTesterThread";
             }
@@ -512,6 +524,7 @@ public class LocaleBeanificationTestCase
     // ---- Auxillary classes
 
     class TestClassLoader extends ClassLoader {
+        @Override
         public String toString() {
             return "TestClassLoader";
         }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleConvertUtilsTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleConvertUtilsTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleConvertUtilsTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/LocaleConvertUtilsTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -65,6 +65,7 @@ public class LocaleConvertUtilsTestCase 
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() {
 
         LocaleConvertUtils.deregister();
@@ -90,6 +91,7 @@ public class LocaleConvertUtilsTestCase 
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         // No action required
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BaseLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BaseLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BaseLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BaseLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -72,6 +72,7 @@ public class BaseLocaleConverterTestCase
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         // Default Locale (Use US)
@@ -114,6 +115,7 @@ public class BaseLocaleConverterTestCase
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
 
         converter = null;

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BigDecimalLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BigDecimalLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BigDecimalLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BigDecimalLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -40,6 +40,7 @@ public class BigDecimalLocaleConverterTe
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         super.setUp();
@@ -52,6 +53,7 @@ public class BigDecimalLocaleConverterTe
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         super.tearDown();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BigIntegerLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BigIntegerLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BigIntegerLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/BigIntegerLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -40,6 +40,7 @@ public class BigIntegerLocaleConverterTe
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         super.setUp();
@@ -52,6 +53,7 @@ public class BigIntegerLocaleConverterTe
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         super.tearDown();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/ByteLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/ByteLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/ByteLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/ByteLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -37,6 +37,7 @@ public class ByteLocaleConverterTestCase
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         super.setUp();
@@ -60,6 +61,7 @@ public class ByteLocaleConverterTestCase
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         super.tearDown();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/DateLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/DateLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/DateLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/DateLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -58,6 +58,7 @@ public class DateLocaleConverterTestCase
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         super.setUp();
@@ -106,6 +107,7 @@ public class DateLocaleConverterTestCase
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         super.tearDown();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/DoubleLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/DoubleLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/DoubleLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/DoubleLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -39,6 +39,7 @@ public class DoubleLocaleConverterTestCa
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         super.setUp();
@@ -51,6 +52,7 @@ public class DoubleLocaleConverterTestCa
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         super.tearDown();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/FloatLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/FloatLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/FloatLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/FloatLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -44,6 +44,7 @@ public class FloatLocaleConverterTestCas
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         super.setUp();
@@ -56,6 +57,7 @@ public class FloatLocaleConverterTestCas
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         super.tearDown();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/IntegerLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/IntegerLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/IntegerLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/IntegerLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -39,6 +39,7 @@ public class IntegerLocaleConverterTestC
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         super.setUp();
@@ -51,6 +52,7 @@ public class IntegerLocaleConverterTestC
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         super.tearDown();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/LongLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/LongLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/LongLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/LongLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -39,6 +39,7 @@ public class LongLocaleConverterTestCase
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         super.setUp();
@@ -51,6 +52,7 @@ public class LongLocaleConverterTestCase
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         super.tearDown();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/ShortLocaleConverterTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/ShortLocaleConverterTestCase.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/ShortLocaleConverterTestCase.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/locale/converters/ShortLocaleConverterTestCase.java
 Fri Mar  8 22:30:51 2013
@@ -39,6 +39,7 @@ public class ShortLocaleConverterTestCas
     /**
      * Set up instance variables required by this test case.
      */
+    @Override
     public void setUp() throws Exception {
 
         super.setUp();
@@ -51,6 +52,7 @@ public class ShortLocaleConverterTestCas
     /**
      * Tear down instance variables required by this test case.
      */
+    @Override
     public void tearDown() {
         super.tearDown();
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/memoryleaktests/pojotests/CustomInteger.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/memoryleaktests/pojotests/CustomInteger.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/memoryleaktests/pojotests/CustomInteger.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/memoryleaktests/pojotests/CustomInteger.java
 Fri Mar  8 22:30:51 2013
@@ -44,6 +44,7 @@ public class CustomInteger extends Numbe
      * Return the double value.
      * @return  the double value
      */
+    @Override
     public double doubleValue() {
         return i;
     }
@@ -52,6 +53,7 @@ public class CustomInteger extends Numbe
      * Return the float value.
      * @return  the float value
      */
+    @Override
     public float floatValue() {
         return i;
     }
@@ -60,6 +62,7 @@ public class CustomInteger extends Numbe
      * Return the integer value.
      * @return  the integer value
      */
+    @Override
     public int intValue() {
         return i;
     }
@@ -68,6 +71,7 @@ public class CustomInteger extends Numbe
      * Return the long value.
      * @return  the long value
      */
+    @Override
     public long longValue() {
         return i;
     }
@@ -75,6 +79,7 @@ public class CustomInteger extends Numbe
     /**
      * Return a String representation of this number.
      */
+    @Override
     public String toString() {
         return Integer.toString(i);
     }

Modified: 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBeanSubclass.java
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBeanSubclass.java?rev=1454606&r1=1454605&r2=1454606&view=diff
==============================================================================
--- 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBeanSubclass.java
 (original)
+++ 
commons/proper/beanutils/trunk/src/test/java/org/apache/commons/beanutils/priv/PrivateBeanSubclass.java
 Fri Mar  8 22:30:51 2013
@@ -48,6 +48,7 @@ class PrivateBeanSubclass extends Privat
     /**
      * A property accessible via the superclass.
      */
+    @Override
     public String getBar() {
 
         return (super.getBar());


Reply via email to