Example usage for org.objectweb.asm.tree.analysis Frame subclass-usage

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

Introduction

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

Usage

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

public final class MonitoringFrame extends Frame {

    // keeps track of monitored locals
    private List<Integer> monitored;

    public MonitoringFrame(Frame arg0) {

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

public final class MonitoringFrame extends Frame {

    // keeps track of monitored locals
    private List<Integer> monitored;

    public MonitoringFrame(Frame arg0) {

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

public class MonitoringFrame extends Frame {

    // keeps track of monitored locals
    private List<Integer> monitored;

    public MonitoringFrame(Frame frame) {

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

public class MonitoringFrame extends Frame {

    // keeps track of monitored locals
    private List<Integer> monitored;

    public MonitoringFrame(Frame frame) {

From source file org.apache.commons.javaflow.providers.asm5.MonitoringFrame.java

public class MonitoringFrame extends Frame {

    // keeps track of monitored locals
    private List<Integer> monitored;

    public MonitoringFrame(Frame frame) {

From source file org.apache.flink.api.java.sca.ModifiedASMFrame.java

/**
 * Modified version of ASMs Frame. It allows to perform different merge
 * priorities and passes frame information to the Interpreter.
 */
@Internal
public class ModifiedASMFrame extends Frame {

From source file org.evosuite.graphs.cfg.CFGFrame.java

public class CFGFrame extends Frame {
    Map<Integer, CFGFrame> successors = new HashMap<Integer, CFGFrame>();

    /**
     * <p>Constructor for CFGFrame.</p>
     *

From source file org.kantega.revoc.demo.ControlFlowAnalysis.java

class Node extends Frame {
    Set<org.kantega.revoc.demo.Node> successors = new HashSet<org.kantega.revoc.demo.Node>();

    public Node(int nLocals, int nStack) {
        super(nLocals, nStack);
    }