org.objectweb.asm.tree
Class LdcInsnNode
java.lang.Object
org.objectweb.asm.tree.AbstractInsnNode
org.objectweb.asm.tree.LdcInsnNode
public class LdcInsnNode
- extends AbstractInsnNode
A node that represents an LDC instruction.
- Author:
- Eric Bruneton
|
Field Summary |
Object |
cst
The constant to be loaded on the stack. |
|
Method Summary |
void |
accept(CodeVisitor cv)
Makes the given code visitor visit this instruction. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
cst
public Object cst
- The constant to be loaded on the stack. This parameter must be a non null
Integer, a Float, a
Long, a Double a String or a Type.
LdcInsnNode
public LdcInsnNode(Object cst)
- Constructs a new
LdcInsnNode object.
- Parameters:
cst - the constant to be loaded on the stack. This parameter must be
a non null Integer, a Float, a Long, a Double or a String.
accept
public void accept(CodeVisitor cv)
- Description copied from class:
AbstractInsnNode
- Makes the given code visitor visit this instruction.
- Specified by:
accept in class AbstractInsnNode
- Parameters:
cv - a code visitor.