Example usage for org.objectweb.asm Opcodes interface-usage

List of usage examples for org.objectweb.asm Opcodes interface-usage

Introduction

In this page you can find the example usage for org.objectweb.asm Opcodes interface-usage.

Usage

From source file com.ibm.layout.GenArray1D.java

class GenArray1D implements Opcodes {
    final private boolean debug = false;
    /* Names are in class file format: delimiter is /, no L; decoration
     * e.g. "com/ibm/layout/Array1D"
     */
    final private String elementInterfaceClassName;

From source file com.ibm.layout.GenArray2D.java

class GenArray2D implements Opcodes {
    final private boolean debug = false;
    /* Names are in class file format: delimiter is /, no L; decoration
     * e.g. "com/ibm/layout/Array1D"
     */
    final private String elementInterfaceClassName;

From source file com.ibm.layout.GenLayout.java

class GenLayout implements Opcodes {
    private final Class<? extends Layout> clazz;
    private final String interfaceClassName;
    private final String implClassName;

    /**

From source file com.ibm.layout.GenPrimArray1D.java

class GenPrimArray1D implements Opcodes {
    final private boolean debug = false;
    /* Names are in class file format: delimiter is /, no L; decoration
     * e.g. "com/ibm/layout/Array1D"
     */
    final private String arrayImplClassName;

From source file com.ibm.layout.GenVLArray.java

class GenVLArray implements Opcodes {
    final private String elementInterfaceClassName;
    final private String elementImplClassName;
    final private String arrayImplClassName;
    final private String arrayInterfaceClassName;
    final private String arrayInterfaceClassSig; /* Signature of the array interface class, if it is generic */

From source file com.ibm.layout.ImplHelper.java

/**
 * Helper methods for runtime class generators (Gen*.class) and FactoryMethods
 */
final class ImplHelper implements Opcodes {

    /**

From source file com.intellij.compiler.notNullVerification.NonnullVerifyingInstrumenter.java

/**
 * @author ven
 * @noinspection HardCodedStringLiteral
 *
 * Note: this is copy of {@link NotNullVerifyingInstrumenter} which supported JSR 305 annotation
 */

From source file com.intellij.compiler.notNullVerification.NotNullVerifyingInstrumenter.java

/**
 * @author ven
 * @author Vladislav.Rassokhin
 */
public class NotNullVerifyingInstrumenter extends ClassVisitor implements Opcodes {
    private static final String NOT_NULL_CLASS_NAME = "org/jetbrains/annotations/NotNull";

From source file com.jake.common.util.asm.util.Constants.java

/**
 * @author Juozas Baliuka <a href="mailto:baliuka@mwm.lt">baliuka@mwm.lt</a>
 * @version $Id: Constants.java,v 1.21 2006/03/05 02:43:19 herbyderby Exp $
 */
public interface Constants extends org.objectweb.asm.Opcodes {
    public static final Class[] EMPTY_CLASS_ARRAY = {};

From source file com.jcoverage.coverage.asm.AsmMethodInstrumenter.java

public class AsmMethodInstrumenter extends MethodAdapter implements Opcodes {

    private String className;
    private String methodName;
    private String desc;