org.logicalcobwebs.asm.tree
Class LdcInsnNode

java.lang.Object
  extended by org.logicalcobwebs.asm.tree.AbstractInsnNode
      extended by org.logicalcobwebs.asm.tree.LdcInsnNode

public class LdcInsnNode
extends AbstractInsnNode

A node that represents an LDC instruction.


Field Summary
 java.lang.Object cst
          The constant to be loaded on the stack.
 
Fields inherited from class org.logicalcobwebs.asm.tree.AbstractInsnNode
opcode
 
Constructor Summary
LdcInsnNode(java.lang.Object cst)
          Constructs a new LdcInsnNode object.
 
Method Summary
 void accept(CodeVisitor cv)
          Makes the given code visitor visit this instruction.
 
Methods inherited from class org.logicalcobwebs.asm.tree.AbstractInsnNode
getOpcode
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

cst

public java.lang.Object 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.

Constructor Detail

LdcInsnNode

public LdcInsnNode(java.lang.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.
Method Detail

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.