* private static InterceptorClass interceptor0 = new MyInterceptor();
* private static InterceptorClass2 interceptor1 = ....
*/
private void addStaticClassInitialization() {
MethodVisitor mv = getCW().visitMethod(ACC_STATIC, "<clinit>", "()V", null, null);
mv.visitCode();
// private static Method method = null
mv.visitInsn(ACONST_NULL);
mv.visitFieldInsn(PUTSTATIC, this.generatedClassName, "method", JAVA_LANG_REFLECT_METHOD);