// get timer method if any and do a call on this timer method
for (EasyBeansEjbJarMethodMetadata method : this.classAnnotationMetadata.getMethodMetadataCollection()) {
if (method.isTimeout()) {
// Write a call to this method
mv.visitVarInsn(ALOAD, 0);
mv.visitVarInsn(ALOAD, 1);
// The name of the class where the method is defined (can be a super class)
String className = this.classAnnotationMetadata.getClassName();
if (method.isInherited()) {
className = method.getOriginalClassMetadata().getClassName();