FileDocCategorySizeDatePackage
LdcInsnNode.javaAPI DocGlassfish v2 API2816Thu Mar 02 11:51:16 GMT 2006oracle.toplink.libraries.asm.tree

LdcInsnNode

public class LdcInsnNode extends AbstractInsnNode
A node that represents an LDC instruction.
author
Eric Bruneton

Fields Summary
public Object
cst
The constant to be loaded on the stack. This parameter must be a non null {@link java.lang.Integer Integer}, a {@link java.lang.Float Float}, a {@link java.lang.Long Long}, a {@link java.lang.Double Double} a {@link String String} or a {@link oracle.toplink.libraries.asm.Type Type}.
Constructors Summary
public LdcInsnNode(Object cst)
Constructs a new {@link LdcInsnNode LdcInsnNode} object.

param
cst the constant to be loaded on the stack. This parameter must be a non null {@link java.lang.Integer Integer}, a {@link java.lang.Float Float}, a {@link java.lang.Long Long}, a {@link java.lang.Double Double} or a {@link String String}.

    super(Constants.LDC);
    this.cst = cst;
  
Methods Summary
public voidaccept(oracle.toplink.libraries.asm.CodeVisitor cv)

    cv.visitLdcInsn(cst);