// Add the interceptor type
mv.visitFieldInsn(GETSTATIC, Type.getInternalName(InterceptorType.class), interceptorType.toString(), "Lorg/ow2/util/ee/metadata/ejbjar/api/InterceptorType;");
mv.visitMethodInsn(INVOKEVIRTUAL, Type.getInternalName(InterceptorType.class), "toString", "()Ljava/lang/String;");
// Signature of the method
mv.visitLdcInsn(MethodHelper.getSignature(method));
// Arguments of the method
// parameters = new Object[] {arg0, arg1, arg...};
// put size of the array
Type[] args = Type.getArgumentTypes(method.getJMethod().getDescriptor());