class ActionBuilderImpl {
/**
* Converts the first character to lower case.
*
* @param s the string to convert.
* @return the converted string.
*/
String lcFirst(String s)
{
if (s == null || s.length() < 1)
{
return s;
}
char first = s.charAt(0);
return Character.toLowerCase(first) + s.substring(1);
}
}