Java org.objectweb.asm Frame fields, constructors, methods, implement or subclass

Example usage for Java org.objectweb.asm Frame fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.objectweb.asm Frame.

The text is from its open source code.

Subclass

org.objectweb.asm.Frame has subclasses.
Click this link to see all its subclasses.

Method

intgetLocal(final int localIndex)
Returns the abstract type stored at the given local variable index in the output frame.
intpop()
Pops an abstract type from the output frame stack and returns its value.
voidpush(final int abstractType)
Pushes the given abstract type on the output frame stack.
voidsetLocal(final int localIndex, final int abstractType)
Replaces the abstract type stored at the given local variable index in the output frame.