"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.
*
+ "' 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());
}