Example usage for org.objectweb.asm.tree MethodNode subclass-usage

List of usage examples for org.objectweb.asm.tree MethodNode subclass-usage

Introduction

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

Usage

From source file br.usp.each.saeg.badua.core.internal.instr.MethodInstrumenter.java

public class MethodInstrumenter extends MethodNode {

    private final String[] exceptions;

    private final MethodVisitor next;

From source file com.datatorrent.stram.webapp.asm.MethodNode.java

/**
 * A {@link org.objectweb.asm.tree.MethodNode} implementation to parse method signature as well
 *
 * @since 2.1
 */
public class MethodNode extends org.objectweb.asm.tree.MethodNode {

From source file com.dragome.callbackevictor.serverside.bytecode.transformation.asm.ContinuationMethodAnalyzer.java

public class ContinuationMethodAnalyzer extends MethodNode implements Opcodes {

    public class MyVerifier extends SimpleVerifier {
        MyVerifier() {
            if (_useLoader != null) {
                setClassLoader(_useLoader);

From source file com.github.fge.grappa.transform.base.RuleMethod.java

public class RuleMethod extends MethodNode {
    private static final Set<ParserAnnotation> COPY_FROM_CLASS = EnumSet.of(DONT_LABEL, EXPLICIT_ACTIONS_ONLY,
            SKIP_ACTIONS_IN_PREDICATES);

    private final List<InstructionGroup> groups = new FasterList<>();
    private final List<LabelNode> usedLabels = new FasterList<>();

From source file com.lodgon.parboiled.transform.RuleMethod.java

class RuleMethod extends MethodNode {

    private final List<InstructionGroup> groups = new ArrayList<InstructionGroup>();
    private final List<LabelNode> usedLabels = new ArrayList<LabelNode>();

    private final Class<?> ownerClass;

From source file kilim.analysis.MethodFlow.java

/** 
 * This represents all the basic blocks of a method. 
 */
public class MethodFlow extends MethodNode {

    /**

From source file net.enilink.composition.asm.ExtendedMethod.java

/**
 * Represents a mutable method that knows its owner class.
 */
public class ExtendedMethod extends org.objectweb.asm.tree.MethodNode {
    private ExtendedClassNode owner;
    private Method method;

From source file org.apache.commons.javaflow.bytecode.transformation.asm.ContinuationMethodAnalyzer.java

public class ContinuationMethodAnalyzer extends MethodNode implements Opcodes {

    protected final String className;
    protected final ClassVisitor cv;
    protected final MethodVisitor mv;

From source file org.apache.commons.javaflow.providers.asm3.ContinuableMethodNode.java

public class ContinuableMethodNode extends MethodNode implements Opcodes {
    private final ContinuableClassInfoResolver cciResolver;
    private final String className;

    protected final MethodVisitor mv;

From source file org.apache.commons.javaflow.providers.asm4.ContinuableMethodNode.java

public class ContinuableMethodNode extends MethodNode implements Opcodes {
    private final ContinuableClassInfoResolver cciResolver;
    private final String className;

    protected final MethodVisitor mv;