* @return a collection of MethodDescriptor for methods which may
* have a associated transaction attribute
*/
protected Collection getTransactionMethods(ClassLoader classLoader) {
try {
BeanMethodCalculatorImpl bmc = new BeanMethodCalculatorImpl();
return bmc.getTransactionalMethodsFor(this, classLoader);
} catch (Throwable t) {
_logger.log(Level.SEVERE, "enterprise.deployment.backend.methodClassLoadFailure", new Object[]{"(EjbDescriptor.getMethods())"});
throw new RuntimeException(t);
}
}