Example usage for com.google.gwt.dev.asm Opcodes ACC_ABSTRACT

List of usage examples for com.google.gwt.dev.asm Opcodes ACC_ABSTRACT

Introduction

In this page you can find the example usage for com.google.gwt.dev.asm Opcodes ACC_ABSTRACT.

Prototype

int ACC_ABSTRACT

To view the source code for com.google.gwt.dev.asm Opcodes ACC_ABSTRACT.

Click Source Link

Usage

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
}