List of usage examples for com.google.gwt.dev.asm Opcodes ACC_ABSTRACT
int ACC_ABSTRACT
To view the source code for com.google.gwt.dev.asm Opcodes ACC_ABSTRACT.
Click Source Link
From source file:com.googlecode.gwt.test.internal.rewrite.RewriteSingleJsoImplDispatches.java
License:Apache License
private void writeEmptyMethod(String mangledMethodName, Method declMethod) { MethodVisitor mv = super.visitMethod(Opcodes.ACC_PUBLIC | Opcodes.ACC_ABSTRACT, mangledMethodName, declMethod.getDescriptor(), null, null); mv.visitEnd();//from w w w . ja v a 2 s. c om }