Oracle Fusion Middleware Java API Reference for Oracle TopLink
11g Release 1 (11.1.1)

B32476-03

oracle.toplink.libraries.asm.tree
Class LdcInsnNode

java.lang.Object
  extended by oracle.toplink.libraries.asm.tree.AbstractInsnNode
      extended by oracle.toplink.libraries.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.
 
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 oracle.toplink.libraries.asm.tree.AbstractInsnNode
getOpcode
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

cst

public java.lang.Object cst
Description copied from class: LdcInsnNode
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.

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: oracle.toplink.libraries.asm.tree.AbstractInsnNode
Makes the given code visitor visit this instruction.

Specified by:
accept in class AbstractInsnNode
Parameters:
cv - a code visitor.

Copyright © 1998, 2010, Oracle. All Rights Reserved.