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

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

Introduction

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

Prototype

int V1_6

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

Click Source Link

Usage

From source file:com.googlecode.gwt.test.internal.rewrite.ForceClassVersion15.java

License:Apache License

@Override
public void visit(final int version, final int access, final String name, final String signature,
        final String superName, final String[] interfaces) {
    assert (version >= Opcodes.V1_5 && version <= Opcodes.V1_6);
    super.visit(Opcodes.V1_5, access, name, signature, superName, interfaces);
}