Example usage for org.objectweb.asm.util Printer TYPES

List of usage examples for org.objectweb.asm.util Printer TYPES

Introduction

In this page you can find the example usage for org.objectweb.asm.util Printer TYPES.

Prototype

String[] TYPES

To view the source code for org.objectweb.asm.util Printer TYPES.

Click Source Link

Document

The names of the operand values of the org.objectweb.asm.MethodVisitor#visitIntInsn method when opcode is NEWARRAY .

Usage

From source file:org.evosuite.graphs.cfg.ASMWrapper.java

License:Open Source License

/**
 * <p>//from w w  w .  ja v  a  2  s .  c  om
 * getType
 * </p>
 * 
 * @return a {@link java.lang.String} object.
 */
public String getType() {
    // TODO explain
    String type = "";
    if (asmNode.getType() >= 0 && asmNode.getType() < Printer.TYPES.length)
        type = Printer.TYPES[asmNode.getType()];

    return type;
}