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

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

Introduction

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

Usage

From source file com.jcoverage.coverage.asm15x.AsmMethodInstrumenter15x.java

public class AsmMethodInstrumenter15x extends CodeAdapter implements Constants {

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

From source file jp.co.dgic.testing.common.virtualmock.asm15x.AbstractAsmMethodVisitor15x.java

public abstract class AbstractAsmMethodVisitor15x extends CodeAdapter implements Constants {

    protected static final String CONSTRUCTOR_METHOD_NAME = "<init>";

    protected static final String MANAGER_PACKAGE_NAME = "jp/co/dgic/testing/common/virtualmock/";

From source file org.jdbcpersistence.impl.BeanGenerator.java

class BeanGenerator implements Constants {
    private ClassWriter _classWriter;
    private BeanProperties _beanProperties;
    private Class _superClass;
    private String _beanClassName;

From source file org.jdbcpersistence.impl.PersistorGenerator.java

public final class PersistorGenerator implements Constants {
    public static final String[] INSERT_DELETE_UPDATE_EXCEPTIONS = new String[] {
            Type.getInternalName(SQLException.class), Type.getInternalName(RuntimeException.class) };
    public static final String[] INSERT_DELETE_UPDATE_BATCH_EXCEPTIONS = new String[] {
            Type.getInternalName(SQLException.class), Type.getInternalName(BatchUpdateException.class),
            Type.getInternalName(RuntimeException.class) };

From source file org.sonatype.flexmojos.compiler.visitors.APIClassVisitor.java

public class APIClassVisitor extends ClassAdapter implements Constants {

    public APIClassVisitor(ClassVisitor cv) {
        super(cv);
    }

From source file org.springsource.loaded.ConstructorCopier.java

/**
 * @author Andy Clement
 * @since 0.5.0
 */
class ConstructorCopier extends MethodVisitor implements Constants {

From source file org.springsource.loaded.EmptyClassVisitor.java

/**
 * Empty implementation that can be subclassed to pick up default implementations of most methods.
 * 
 * @author Andy Clement
 * @since 0.7.3
 */

From source file org.springsource.loaded.MethodCopier.java

/**
 * 
 * @author Andy Clement
 * @since 0.5.0
 */
class MethodCopier extends MethodVisitor implements Constants {

From source file org.springsource.loaded.SystemClassReflectionRewriter.java

/**
 * This helper class will generate the fields/methods in the system classes that are being rewritten.
 */
class SystemClassReflectionGenerator implements Constants {

    //   public static Method __sljlcgdfs;

From source file org.springsource.loaded.TypeRewriter.java

/**
 * Rewrites a class such that it is amenable to reloading. This involves:
 * <ul>
 * <li>In every method, introduce logic to check it it the latest version of that method - if it isn't dispatch to the latest
 * <li>Creates additional methods to aid with field setting/getting
 * <li>Creates additional fields to help reloading (reloadable type instance, new field value holders)