Uses of Interface
org.apache.bcel.generic.PopInstruction

Packages that use PopInstruction
org.apache.bcel.generic This package contains the "generic" part of the Byte Code Engineering Library, i.e., classes to dynamically modify class objects and byte code instructions.  
 

Uses of PopInstruction in org.apache.bcel.generic
 

Classes in org.apache.bcel.generic that implement PopInstruction
 class ASTORE
          ASTORE - Store reference into local variable Stack ..., objectref -> ...
 class DSTORE
          DSTORE - Store double into local variable Stack: ..., value.word1, value.word2 -> ...
 class FSTORE
          FSTORE - Store float into local variable Stack: ..., value -> ...
 class ISTORE
          ISTORE - Store int from stack into local variable Stack: ..., value -> ...
 class LSTORE
          LSTORE - Store long into local variable Stack: ..., value.word1, value.word2 -> ...
 class POP
          POP - Pop top operand stack word Stack: ..., word -> ...
 class POP2
          POP2 - Pop two top operand stack words Stack: ..., word2, word1 -> ...
 class PUTFIELD
          PUTFIELD - Put field in object Stack: ..., objectref, value -> ...
 class PUTSTATIC
          PUTSTATIC - Put static field in class Stack: ..., value -> ...
 class StoreInstruction
          Denotes an unparameterized instruction to store a value into a local variable, e.g.
 

Methods in org.apache.bcel.generic with parameters of type PopInstruction
 void Visitor.visitPopInstruction(PopInstruction obj)
           
 void EmptyVisitor.visitPopInstruction(PopInstruction obj)
           
 



Copyright © 2002-2003 Apache Software Foundation. All Rights Reserved.