}
private JMethod getGetter( final ClassOutline c, final String fieldName )
{
JMethod getter = null;
FieldOutline field = null;
final char[] chars = c.parent().getModel().getNameConverter().toPropertyName( fieldName ).toCharArray();
chars[0] = Character.toUpperCase( chars[0] );
String publicName = String.valueOf( chars );
for ( FieldOutline f : c.getDeclaredFields() )
{
if ( f.getPropertyInfo().getName( false ).equals( fieldName ) )
{
field = f;
break;
}
}
if ( field != null )
{
publicName = field.getPropertyInfo().getName( true );
}
getter = c.implClass.getMethod( "get" + publicName, NO_JTYPES );
if ( getter == null )