}
else {
String methodName = property.substring( 0, 1 ).toUpperCase() + property.substring( 1 );
String[] prefixes = { "is", "get", "has" };
for ( String prefix : prefixes ) {
GetMethod action = GetMethod.action( clazz, prefix + methodName );
if ( System.getSecurityManager() != null ) {
member = AccessController.doPrivileged( action );
}
else {
member = action.run();
}
if ( member != null ) {
break;
}
}