584585586587588589590591592593594
GetMethodFromPropertyName action = GetMethodFromPropertyName.action( clazz, methodName ); if ( System.getSecurityManager() != null ) { method = AccessController.doPrivileged( action ); } else { method = action.run(); } return method; } /**
564565566567568569570571572573574