Example usage for org.objectweb.asm MethodVisitor subclass-usage

List of usage examples for org.objectweb.asm MethodVisitor subclass-usage

Introduction

In this page you can find the example usage for org.objectweb.asm MethodVisitor subclass-usage.

Usage

From source file org.snlab.vxe.system.instrument.VxeMethodVisitor.java

public class VxeMethodVisitor extends MethodVisitor {

    private boolean main = false;

    protected static final String VXE_ENTRYPOINT = Type.getDescriptor(VxeEntryPoint.class);

From source file org.sonar.java.resolve.BytecodeMethodVisitor.java

public class BytecodeMethodVisitor extends MethodVisitor {

    private final MethodJavaSymbol methodSymbol;
    private final BytecodeVisitor bytecodeVisitor;
    /**
     * This counter counts the number of argument annotated with java.lang.Synthetic.

From source file org.springframework.cglib.transform.MethodVisitorTee.java

public class MethodVisitorTee extends MethodVisitor {
    private final MethodVisitor mv1;
    private final MethodVisitor mv2;

    public MethodVisitorTee(MethodVisitor mv1, MethodVisitor mv2) {
        super(Opcodes.ASM4);

From source file org.springframework.core.type.classreading.ClassMetadataReadingVisitor.java

class EmptyMethodVisitor extends MethodVisitor {

    public EmptyMethodVisitor() {
        super(SpringAsmInfo.ASM_VERSION);
    }
}

From source file org.springframework.core.type.classreading.MethodMetadataReadingVisitor.java

/**
 * ASM method visitor which looks for the annotations defined on the method,
 * exposing them through the {@link org.springframework.core.type.MethodMetadata}
 * interface.
 *
 * @author Juergen Hoeller

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.MethodCopier.java

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

From source file org.springsource.loaded.test.infra.FakeMethodVisitor.java

/**
 * MethodVisitor that records events - very useful for testing
 */
public class FakeMethodVisitor extends MethodVisitor implements Constants {

    public FakeMethodVisitor() {

From source file org.springsource.loaded.test.infra.MethodPrinter.java

/**
 * 
 * @author Andy Clement
 */
public class MethodPrinter extends MethodVisitor implements Opcodes {

From source file org.summer.aop.ltw.AuxiliaryWeaver.java

/**
 * @author Sandro Sebastian Koll
 */
class AuxiliaryWeaver extends MethodVisitor implements Opcodes {
    AuxiliaryWeaver(String className, MethodVisitor mv, int access, String methodName, int constructorNumber,
            String methodDesc, String methodSignature, String[] exceptions, List<Aspect> matchingAspects) {