bcel API: Class LDC2_W

org.apache.bcel.generic
Class LDC2_W

java.lang.Object
  |
  +--org.apache.bcel.generic.Instruction
        |
        +--org.apache.bcel.generic.CPInstruction
              |
              +--org.apache.bcel.generic.LDC2_W
All Implemented Interfaces:
java.lang.Cloneable, IndexedInstruction, PushInstruction, java.io.Serializable, StackProducer, TypedInstruction

public class LDC2_W
extends CPInstruction
implements PushInstruction, TypedInstruction

LDC2_W - Push long or double from constant pool

Stack: ... -> ..., item.word1, item.word2

Version:
$Id: LDC2_W.java,v 1.1.1.1 2001/10/29 20:00:21 jvanzyl Exp $
Author:
M. Dahm
See Also:
Serialized Form

Fields inherited from class org.apache.bcel.generic.CPInstruction
index
 
Fields inherited from class org.apache.bcel.generic.Instruction
length, opcode
 
Constructor Summary
LDC2_W(int index)
           
 
Method Summary
 void accept(Visitor v)
          Call corresponding visitor method(s).
 Type getType(ConstantPoolGen cpg)
           
 java.lang.Number getValue(ConstantPoolGen cpg)
           
 
Methods inherited from class org.apache.bcel.generic.CPInstruction
dump, getIndex, initFromFile, setIndex, toString, toString
 
Methods inherited from class org.apache.bcel.generic.Instruction
consumeStack, copy, getLength, getOpcode, produceStack, readInstruction, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.apache.bcel.generic.StackProducer
produceStack
 

Constructor Detail

LDC2_W

public LDC2_W(int index)
Method Detail

getType

public Type getType(ConstantPoolGen cpg)
Specified by:
getType in interface TypedInstruction
Overrides:
getType in class CPInstruction
Following copied from class: org.apache.bcel.generic.CPInstruction
Returns:
type related with this instruction.

getValue

public java.lang.Number getValue(ConstantPoolGen cpg)

accept

public void accept(Visitor v)
Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, i.e., the most specific visitXXX() call comes last.
Overrides:
accept in class Instruction
Parameters:
v - Visitor object