(no commit message)
authorerik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sun, 15 Nov 2009 10:42:55 +0000 (10:42 +0000)
committererik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sun, 15 Nov 2009 10:42:55 +0000 (10:42 +0000)
system/general/src/main/java/org/wamblee/system/adapters/SetterConfiguration.java

index f81c4a4bc405837d893f5e021635a3b3bd1e0137..15c101dcc1ce9d50a69a93bbb57d5abe9457abb3 100644 (file)
@@ -133,20 +133,6 @@ public class SetterConfiguration {
                 "Method '" + aMethod + "' was not configured. ");
        }
        
-       
-
-       /**
-        * Creates the name of a setter based on the name of the setter without the
-        * "set" prefix.
-        * 
-        * @param aName
-        *            Setter name.
-        * @return Setter name.
-        */
-       private String createxSetterName(String aName) {
-               return "set" + aName.substring(0, 1).toUpperCase() + aName.substring(1);
-       }
-
        /**
         * Adds a given setter name to the setters.
         * 
@@ -308,20 +294,6 @@ public class SetterConfiguration {
                                + "' found");
        }
 
-       /**
-        * Gets the setter name for a given setter method. This is the name of the
-        * setter without the "set" prefix and with the first character converted to
-        * lowercase.
-        * 
-        * @param aMethod
-        *            Method.
-        * @return Setter name.
-        */
-       private static String getxSetterName(Method aMethod) {
-               String result = aMethod.getName().substring(3);
-               return result.substring(0, 1).toLowerCase() + result.substring(1);
-       }
-
        public List<Method> getSetters() { 
                return new ArrayList<Method>(_setters.keySet());
        }