org.objectweb.asm.tree

Class LdcInsnNode

public class LdcInsnNode extends AbstractInsnNode

A node that represents an LDC instruction.

Author: Eric Bruneton

Field Summary
Objectcst
The constant to be loaded on the stack.
Constructor Summary
LdcInsnNode(Object cst)
Constructs a new LdcInsnNode object.
Method Summary
voidaccept(CodeVisitor cv)

Field Detail

cst

public Object cst
The constant to be loaded on the stack. This parameter must be a non null java.lang.Integer Integer, a java.lang.Float Float, a java.lang.Long Long, a java.lang.Double Double a String String or a Type.

Constructor Detail

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 java.lang.Integer Integer, a java.lang.Float Float, a java.lang.Long Long, a java.lang.Double Double or a String String.

Method Detail

accept

public void accept(CodeVisitor cv)