String typeDesc = String.format("%s(%s)", mName, ASMEngineToos.toAsmType(tMethod.getParameterTypes()));
//
if (this.validMethod.contains(typeDesc) == false) {
String desc = ASMEngineToos.toAsmDesc(tMethod);
MethodVisitor mv = super.visitMethod(ACC_PUBLIC, mName, desc, null, null);
mv.visitCode();
this.buildInterfaceMethod(mv, mName, desc, faceType);
mv.visitEnd();
}
//
}