BCEL's class file verifier "JustIce"

de.fub.bytecode.verifier.structurals
Class ExecutionVisitor

java.lang.Object
  |
  +--de.fub.bytecode.generic.EmptyVisitor
        |
        +--de.fub.bytecode.verifier.structurals.ExecutionVisitor
All Implemented Interfaces:
de.fub.bytecode.generic.Visitor

public class ExecutionVisitor
extends de.fub.bytecode.generic.EmptyVisitor
implements de.fub.bytecode.generic.Visitor

This Visitor class may be used for a type-based Java Virtual Machine simulation. It does not check for correct types on the OperandStack or in the LocalVariables; nor does it check their sizes are sufficiently big. Thus, to use this Visitor for bytecode verifying, you have to make sure externally that the type constraints of the Java Virtual Machine instructions are satisfied. An InstConstraintVisitor may be used for this. Anyway, this Visitor does not mandate it. For example, when you visitIADD(IADD o), then there are two stack slots popped and one stack slot containing a Type.INT is pushed (where you could also pop only one slot if you know there are two Type.INT on top of the stack). Monitor-specific behaviour is not simulated.

Conventions: Type.VOID will never be pushed onto the stack. Type.DOUBLE and Type.LONG that would normally take up two stack slots (like Double_HIGH and Double_LOW) are represented by a simple single Type.DOUBLE or Type.LONG object on the stack here. If a two-slot type is stored into a local variable, the next variable is given the type Type.UNKNOWN.

Version:
$Id: ExecutionVisitor.java,v 1.26 2001/09/12 11:59:15 ehaase Exp $
Author:
Enver Haase
See Also:
visitDSTORE(DSTORE o), InstConstraintVisitor

Constructor Summary
ExecutionVisitor()
          Constructor.
 
Method Summary
 void setConstantPoolGen(de.fub.bytecode.generic.ConstantPoolGen cpg)
          Sets the ConstantPoolGen needed for symbolic execution.
 void setFrame(Frame f)
          The only method granting access to the single instance of the ExecutionVisitor class.
 void visitAALOAD(de.fub.bytecode.generic.AALOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitAASTORE(de.fub.bytecode.generic.AASTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitACONST_NULL(de.fub.bytecode.generic.ACONST_NULL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitALOAD(de.fub.bytecode.generic.ALOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitANEWARRAY(de.fub.bytecode.generic.ANEWARRAY o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitARETURN(de.fub.bytecode.generic.ARETURN o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitARRAYLENGTH(de.fub.bytecode.generic.ARRAYLENGTH o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitASTORE(de.fub.bytecode.generic.ASTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitATHROW(de.fub.bytecode.generic.ATHROW o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitBALOAD(de.fub.bytecode.generic.BALOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitBASTORE(de.fub.bytecode.generic.BASTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitBIPUSH(de.fub.bytecode.generic.BIPUSH o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitCALOAD(de.fub.bytecode.generic.CALOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitCASTORE(de.fub.bytecode.generic.CASTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitCHECKCAST(de.fub.bytecode.generic.CHECKCAST o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitD2F(de.fub.bytecode.generic.D2F o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitD2I(de.fub.bytecode.generic.D2I o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitD2L(de.fub.bytecode.generic.D2L o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDADD(de.fub.bytecode.generic.DADD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDALOAD(de.fub.bytecode.generic.DALOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDASTORE(de.fub.bytecode.generic.DASTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDCMPG(de.fub.bytecode.generic.DCMPG o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDCMPL(de.fub.bytecode.generic.DCMPL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDCONST(de.fub.bytecode.generic.DCONST o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDDIV(de.fub.bytecode.generic.DDIV o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDLOAD(de.fub.bytecode.generic.DLOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDMUL(de.fub.bytecode.generic.DMUL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDNEG(de.fub.bytecode.generic.DNEG o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDREM(de.fub.bytecode.generic.DREM o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDRETURN(de.fub.bytecode.generic.DRETURN o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDSTORE(de.fub.bytecode.generic.DSTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDSUB(de.fub.bytecode.generic.DSUB o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDUP_X1(de.fub.bytecode.generic.DUP_X1 o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDUP_X2(de.fub.bytecode.generic.DUP_X2 o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDUP(de.fub.bytecode.generic.DUP o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDUP2_X1(de.fub.bytecode.generic.DUP2_X1 o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDUP2_X2(de.fub.bytecode.generic.DUP2_X2 o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitDUP2(de.fub.bytecode.generic.DUP2 o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitF2D(de.fub.bytecode.generic.F2D o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitF2I(de.fub.bytecode.generic.F2I o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitF2L(de.fub.bytecode.generic.F2L o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFADD(de.fub.bytecode.generic.FADD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFALOAD(de.fub.bytecode.generic.FALOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFASTORE(de.fub.bytecode.generic.FASTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFCMPG(de.fub.bytecode.generic.FCMPG o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFCMPL(de.fub.bytecode.generic.FCMPL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFCONST(de.fub.bytecode.generic.FCONST o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFDIV(de.fub.bytecode.generic.FDIV o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFLOAD(de.fub.bytecode.generic.FLOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFMUL(de.fub.bytecode.generic.FMUL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFNEG(de.fub.bytecode.generic.FNEG o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFREM(de.fub.bytecode.generic.FREM o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFRETURN(de.fub.bytecode.generic.FRETURN o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFSTORE(de.fub.bytecode.generic.FSTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitFSUB(de.fub.bytecode.generic.FSUB o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitGETFIELD(de.fub.bytecode.generic.GETFIELD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitGETSTATIC(de.fub.bytecode.generic.GETSTATIC o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitGOTO_W(de.fub.bytecode.generic.GOTO_W o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitGOTO(de.fub.bytecode.generic.GOTO o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitI2B(de.fub.bytecode.generic.I2B o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitI2C(de.fub.bytecode.generic.I2C o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitI2D(de.fub.bytecode.generic.I2D o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitI2F(de.fub.bytecode.generic.I2F o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitI2L(de.fub.bytecode.generic.I2L o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitI2S(de.fub.bytecode.generic.I2S o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIADD(de.fub.bytecode.generic.IADD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIALOAD(de.fub.bytecode.generic.IALOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIAND(de.fub.bytecode.generic.IAND o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIASTORE(de.fub.bytecode.generic.IASTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitICONST(de.fub.bytecode.generic.ICONST o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIDIV(de.fub.bytecode.generic.IDIV o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIF_ACMPEQ(de.fub.bytecode.generic.IF_ACMPEQ o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIF_ACMPNE(de.fub.bytecode.generic.IF_ACMPNE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIF_ICMPEQ(de.fub.bytecode.generic.IF_ICMPEQ o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIF_ICMPGE(de.fub.bytecode.generic.IF_ICMPGE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIF_ICMPGT(de.fub.bytecode.generic.IF_ICMPGT o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIF_ICMPLE(de.fub.bytecode.generic.IF_ICMPLE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIF_ICMPLT(de.fub.bytecode.generic.IF_ICMPLT o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIF_ICMPNE(de.fub.bytecode.generic.IF_ICMPNE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIFEQ(de.fub.bytecode.generic.IFEQ o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIFGE(de.fub.bytecode.generic.IFGE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIFGT(de.fub.bytecode.generic.IFGT o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIFLE(de.fub.bytecode.generic.IFLE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIFLT(de.fub.bytecode.generic.IFLT o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIFNE(de.fub.bytecode.generic.IFNE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIFNONNULL(de.fub.bytecode.generic.IFNONNULL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIFNULL(de.fub.bytecode.generic.IFNULL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIINC(de.fub.bytecode.generic.IINC o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitILOAD(de.fub.bytecode.generic.ILOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIMUL(de.fub.bytecode.generic.IMUL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitINEG(de.fub.bytecode.generic.INEG o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitINSTANCEOF(de.fub.bytecode.generic.INSTANCEOF o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitINVOKEINTERFACE(de.fub.bytecode.generic.INVOKEINTERFACE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitINVOKESPECIAL(de.fub.bytecode.generic.INVOKESPECIAL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitINVOKESTATIC(de.fub.bytecode.generic.INVOKESTATIC o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitINVOKEVIRTUAL(de.fub.bytecode.generic.INVOKEVIRTUAL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIOR(de.fub.bytecode.generic.IOR o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIREM(de.fub.bytecode.generic.IREM o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIRETURN(de.fub.bytecode.generic.IRETURN o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitISHL(de.fub.bytecode.generic.ISHL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitISHR(de.fub.bytecode.generic.ISHR o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitISTORE(de.fub.bytecode.generic.ISTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitISUB(de.fub.bytecode.generic.ISUB o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIUSHR(de.fub.bytecode.generic.IUSHR o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitIXOR(de.fub.bytecode.generic.IXOR o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitJSR_W(de.fub.bytecode.generic.JSR_W o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitJSR(de.fub.bytecode.generic.JSR o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitL2D(de.fub.bytecode.generic.L2D o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitL2F(de.fub.bytecode.generic.L2F o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitL2I(de.fub.bytecode.generic.L2I o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLADD(de.fub.bytecode.generic.LADD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLALOAD(de.fub.bytecode.generic.LALOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLAND(de.fub.bytecode.generic.LAND o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLASTORE(de.fub.bytecode.generic.LASTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLCMP(de.fub.bytecode.generic.LCMP o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLCONST(de.fub.bytecode.generic.LCONST o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLDC_W(de.fub.bytecode.generic.LDC_W o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLDC(de.fub.bytecode.generic.LDC o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLDC2_W(de.fub.bytecode.generic.LDC2_W o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLDIV(de.fub.bytecode.generic.LDIV o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLLOAD(de.fub.bytecode.generic.LLOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLMUL(de.fub.bytecode.generic.LMUL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLNEG(de.fub.bytecode.generic.LNEG o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLOOKUPSWITCH(de.fub.bytecode.generic.LOOKUPSWITCH o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLOR(de.fub.bytecode.generic.LOR o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLREM(de.fub.bytecode.generic.LREM o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLRETURN(de.fub.bytecode.generic.LRETURN o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLSHL(de.fub.bytecode.generic.LSHL o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLSHR(de.fub.bytecode.generic.LSHR o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLSTORE(de.fub.bytecode.generic.LSTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLSUB(de.fub.bytecode.generic.LSUB o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLUSHR(de.fub.bytecode.generic.LUSHR o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitLXOR(de.fub.bytecode.generic.LXOR o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitMONITORENTER(de.fub.bytecode.generic.MONITORENTER o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitMONITOREXIT(de.fub.bytecode.generic.MONITOREXIT o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitMULTIANEWARRAY(de.fub.bytecode.generic.MULTIANEWARRAY o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitNEW(de.fub.bytecode.generic.NEW o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitNEWARRAY(de.fub.bytecode.generic.NEWARRAY o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitNOP(de.fub.bytecode.generic.NOP o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitPOP(de.fub.bytecode.generic.POP o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitPOP2(de.fub.bytecode.generic.POP2 o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitPUTFIELD(de.fub.bytecode.generic.PUTFIELD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitPUTSTATIC(de.fub.bytecode.generic.PUTSTATIC o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitRET(de.fub.bytecode.generic.RET o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitRETURN(de.fub.bytecode.generic.RETURN o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitSALOAD(de.fub.bytecode.generic.SALOAD o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitSASTORE(de.fub.bytecode.generic.SASTORE o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitSIPUSH(de.fub.bytecode.generic.SIPUSH o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitSWAP(de.fub.bytecode.generic.SWAP o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 void visitTABLESWITCH(de.fub.bytecode.generic.TABLESWITCH o)
          Symbolically executes the corresponding Java Virtual Machine instruction.
 
Methods inherited from class de.fub.bytecode.generic.EmptyVisitor
visitAllocationInstruction, visitArithmeticInstruction, visitArrayInstruction, visitBranchInstruction, visitBREAKPOINT, visitConstantPushInstruction, visitConversionInstruction, visitCPInstruction, visitExceptionThrower, visitFieldInstruction, visitFieldOrMethod, visitGotoInstruction, visitIfInstruction, visitIMPDEP1, visitIMPDEP2, visitInvokeInstruction, visitJsrInstruction, visitLoadClass, visitLoadInstruction, visitLocalVariableInstruction, visitPopInstruction, visitPushInstruction, visitReturnInstruction, visitSelect, visitStackConsumer, visitStackInstruction, visitStackProducer, visitStoreInstruction, visitTypedInstruction, visitUnconditionalBranch, visitVariableLengthInstruction
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface de.fub.bytecode.generic.Visitor
visitAllocationInstruction, visitArithmeticInstruction, visitArrayInstruction, visitBranchInstruction, visitBREAKPOINT, visitConstantPushInstruction, visitConversionInstruction, visitCPInstruction, visitExceptionThrower, visitFieldInstruction, visitFieldOrMethod, visitGotoInstruction, visitIfInstruction, visitIMPDEP1, visitIMPDEP2, visitInvokeInstruction, visitJsrInstruction, visitLoadClass, visitLoadInstruction, visitLocalVariableInstruction, visitPopInstruction, visitPushInstruction, visitReturnInstruction, visitSelect, visitStackConsumer, visitStackInstruction, visitStackProducer, visitStoreInstruction, visitTypedInstruction, visitUnconditionalBranch, visitVariableLengthInstruction
 

Constructor Detail

ExecutionVisitor

public ExecutionVisitor()
Constructor. Constructs a new instance of this class.
Method Detail

setConstantPoolGen

public void setConstantPoolGen(de.fub.bytecode.generic.ConstantPoolGen cpg)
Sets the ConstantPoolGen needed for symbolic execution.

setFrame

public void setFrame(Frame f)
The only method granting access to the single instance of the ExecutionVisitor class. Before actively using this instance, SET THE ConstantPoolGen FIRST.
See Also:
setConstantPoolGen(ConstantPoolGen)

visitAALOAD

public void visitAALOAD(de.fub.bytecode.generic.AALOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitAALOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitAALOAD in class de.fub.bytecode.generic.EmptyVisitor

visitAASTORE

public void visitAASTORE(de.fub.bytecode.generic.AASTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitAASTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitAASTORE in class de.fub.bytecode.generic.EmptyVisitor

visitACONST_NULL

public void visitACONST_NULL(de.fub.bytecode.generic.ACONST_NULL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitACONST_NULL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitACONST_NULL in class de.fub.bytecode.generic.EmptyVisitor

visitALOAD

public void visitALOAD(de.fub.bytecode.generic.ALOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitALOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitALOAD in class de.fub.bytecode.generic.EmptyVisitor

visitANEWARRAY

public void visitANEWARRAY(de.fub.bytecode.generic.ANEWARRAY o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitANEWARRAY in interface de.fub.bytecode.generic.Visitor
Overrides:
visitANEWARRAY in class de.fub.bytecode.generic.EmptyVisitor

visitARETURN

public void visitARETURN(de.fub.bytecode.generic.ARETURN o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitARETURN in interface de.fub.bytecode.generic.Visitor
Overrides:
visitARETURN in class de.fub.bytecode.generic.EmptyVisitor

visitARRAYLENGTH

public void visitARRAYLENGTH(de.fub.bytecode.generic.ARRAYLENGTH o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitARRAYLENGTH in interface de.fub.bytecode.generic.Visitor
Overrides:
visitARRAYLENGTH in class de.fub.bytecode.generic.EmptyVisitor

visitASTORE

public void visitASTORE(de.fub.bytecode.generic.ASTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitASTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitASTORE in class de.fub.bytecode.generic.EmptyVisitor

visitATHROW

public void visitATHROW(de.fub.bytecode.generic.ATHROW o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitATHROW in interface de.fub.bytecode.generic.Visitor
Overrides:
visitATHROW in class de.fub.bytecode.generic.EmptyVisitor

visitBALOAD

public void visitBALOAD(de.fub.bytecode.generic.BALOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitBALOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitBALOAD in class de.fub.bytecode.generic.EmptyVisitor

visitBASTORE

public void visitBASTORE(de.fub.bytecode.generic.BASTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitBASTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitBASTORE in class de.fub.bytecode.generic.EmptyVisitor

visitBIPUSH

public void visitBIPUSH(de.fub.bytecode.generic.BIPUSH o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitBIPUSH in interface de.fub.bytecode.generic.Visitor
Overrides:
visitBIPUSH in class de.fub.bytecode.generic.EmptyVisitor

visitCALOAD

public void visitCALOAD(de.fub.bytecode.generic.CALOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitCALOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitCALOAD in class de.fub.bytecode.generic.EmptyVisitor

visitCASTORE

public void visitCASTORE(de.fub.bytecode.generic.CASTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitCASTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitCASTORE in class de.fub.bytecode.generic.EmptyVisitor

visitCHECKCAST

public void visitCHECKCAST(de.fub.bytecode.generic.CHECKCAST o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitCHECKCAST in interface de.fub.bytecode.generic.Visitor
Overrides:
visitCHECKCAST in class de.fub.bytecode.generic.EmptyVisitor

visitD2F

public void visitD2F(de.fub.bytecode.generic.D2F o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitD2F in interface de.fub.bytecode.generic.Visitor
Overrides:
visitD2F in class de.fub.bytecode.generic.EmptyVisitor

visitD2I

public void visitD2I(de.fub.bytecode.generic.D2I o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitD2I in interface de.fub.bytecode.generic.Visitor
Overrides:
visitD2I in class de.fub.bytecode.generic.EmptyVisitor

visitD2L

public void visitD2L(de.fub.bytecode.generic.D2L o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitD2L in interface de.fub.bytecode.generic.Visitor
Overrides:
visitD2L in class de.fub.bytecode.generic.EmptyVisitor

visitDADD

public void visitDADD(de.fub.bytecode.generic.DADD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDADD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDADD in class de.fub.bytecode.generic.EmptyVisitor

visitDALOAD

public void visitDALOAD(de.fub.bytecode.generic.DALOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDALOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDALOAD in class de.fub.bytecode.generic.EmptyVisitor

visitDASTORE

public void visitDASTORE(de.fub.bytecode.generic.DASTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDASTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDASTORE in class de.fub.bytecode.generic.EmptyVisitor

visitDCMPG

public void visitDCMPG(de.fub.bytecode.generic.DCMPG o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDCMPG in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDCMPG in class de.fub.bytecode.generic.EmptyVisitor

visitDCMPL

public void visitDCMPL(de.fub.bytecode.generic.DCMPL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDCMPL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDCMPL in class de.fub.bytecode.generic.EmptyVisitor

visitDCONST

public void visitDCONST(de.fub.bytecode.generic.DCONST o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDCONST in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDCONST in class de.fub.bytecode.generic.EmptyVisitor

visitDDIV

public void visitDDIV(de.fub.bytecode.generic.DDIV o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDDIV in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDDIV in class de.fub.bytecode.generic.EmptyVisitor

visitDLOAD

public void visitDLOAD(de.fub.bytecode.generic.DLOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDLOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDLOAD in class de.fub.bytecode.generic.EmptyVisitor

visitDMUL

public void visitDMUL(de.fub.bytecode.generic.DMUL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDMUL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDMUL in class de.fub.bytecode.generic.EmptyVisitor

visitDNEG

public void visitDNEG(de.fub.bytecode.generic.DNEG o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDNEG in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDNEG in class de.fub.bytecode.generic.EmptyVisitor

visitDREM

public void visitDREM(de.fub.bytecode.generic.DREM o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDREM in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDREM in class de.fub.bytecode.generic.EmptyVisitor

visitDRETURN

public void visitDRETURN(de.fub.bytecode.generic.DRETURN o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDRETURN in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDRETURN in class de.fub.bytecode.generic.EmptyVisitor

visitDSTORE

public void visitDSTORE(de.fub.bytecode.generic.DSTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDSTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDSTORE in class de.fub.bytecode.generic.EmptyVisitor

visitDSUB

public void visitDSUB(de.fub.bytecode.generic.DSUB o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDSUB in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDSUB in class de.fub.bytecode.generic.EmptyVisitor

visitDUP

public void visitDUP(de.fub.bytecode.generic.DUP o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDUP in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDUP in class de.fub.bytecode.generic.EmptyVisitor

visitDUP_X1

public void visitDUP_X1(de.fub.bytecode.generic.DUP_X1 o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDUP_X1 in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDUP_X1 in class de.fub.bytecode.generic.EmptyVisitor

visitDUP_X2

public void visitDUP_X2(de.fub.bytecode.generic.DUP_X2 o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDUP_X2 in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDUP_X2 in class de.fub.bytecode.generic.EmptyVisitor

visitDUP2

public void visitDUP2(de.fub.bytecode.generic.DUP2 o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDUP2 in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDUP2 in class de.fub.bytecode.generic.EmptyVisitor

visitDUP2_X1

public void visitDUP2_X1(de.fub.bytecode.generic.DUP2_X1 o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDUP2_X1 in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDUP2_X1 in class de.fub.bytecode.generic.EmptyVisitor

visitDUP2_X2

public void visitDUP2_X2(de.fub.bytecode.generic.DUP2_X2 o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitDUP2_X2 in interface de.fub.bytecode.generic.Visitor
Overrides:
visitDUP2_X2 in class de.fub.bytecode.generic.EmptyVisitor

visitF2D

public void visitF2D(de.fub.bytecode.generic.F2D o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitF2D in interface de.fub.bytecode.generic.Visitor
Overrides:
visitF2D in class de.fub.bytecode.generic.EmptyVisitor

visitF2I

public void visitF2I(de.fub.bytecode.generic.F2I o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitF2I in interface de.fub.bytecode.generic.Visitor
Overrides:
visitF2I in class de.fub.bytecode.generic.EmptyVisitor

visitF2L

public void visitF2L(de.fub.bytecode.generic.F2L o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitF2L in interface de.fub.bytecode.generic.Visitor
Overrides:
visitF2L in class de.fub.bytecode.generic.EmptyVisitor

visitFADD

public void visitFADD(de.fub.bytecode.generic.FADD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFADD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFADD in class de.fub.bytecode.generic.EmptyVisitor

visitFALOAD

public void visitFALOAD(de.fub.bytecode.generic.FALOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFALOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFALOAD in class de.fub.bytecode.generic.EmptyVisitor

visitFASTORE

public void visitFASTORE(de.fub.bytecode.generic.FASTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFASTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFASTORE in class de.fub.bytecode.generic.EmptyVisitor

visitFCMPG

public void visitFCMPG(de.fub.bytecode.generic.FCMPG o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFCMPG in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFCMPG in class de.fub.bytecode.generic.EmptyVisitor

visitFCMPL

public void visitFCMPL(de.fub.bytecode.generic.FCMPL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFCMPL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFCMPL in class de.fub.bytecode.generic.EmptyVisitor

visitFCONST

public void visitFCONST(de.fub.bytecode.generic.FCONST o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFCONST in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFCONST in class de.fub.bytecode.generic.EmptyVisitor

visitFDIV

public void visitFDIV(de.fub.bytecode.generic.FDIV o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFDIV in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFDIV in class de.fub.bytecode.generic.EmptyVisitor

visitFLOAD

public void visitFLOAD(de.fub.bytecode.generic.FLOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFLOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFLOAD in class de.fub.bytecode.generic.EmptyVisitor

visitFMUL

public void visitFMUL(de.fub.bytecode.generic.FMUL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFMUL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFMUL in class de.fub.bytecode.generic.EmptyVisitor

visitFNEG

public void visitFNEG(de.fub.bytecode.generic.FNEG o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFNEG in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFNEG in class de.fub.bytecode.generic.EmptyVisitor

visitFREM

public void visitFREM(de.fub.bytecode.generic.FREM o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFREM in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFREM in class de.fub.bytecode.generic.EmptyVisitor

visitFRETURN

public void visitFRETURN(de.fub.bytecode.generic.FRETURN o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFRETURN in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFRETURN in class de.fub.bytecode.generic.EmptyVisitor

visitFSTORE

public void visitFSTORE(de.fub.bytecode.generic.FSTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFSTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFSTORE in class de.fub.bytecode.generic.EmptyVisitor

visitFSUB

public void visitFSUB(de.fub.bytecode.generic.FSUB o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitFSUB in interface de.fub.bytecode.generic.Visitor
Overrides:
visitFSUB in class de.fub.bytecode.generic.EmptyVisitor

visitGETFIELD

public void visitGETFIELD(de.fub.bytecode.generic.GETFIELD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitGETFIELD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitGETFIELD in class de.fub.bytecode.generic.EmptyVisitor

visitGETSTATIC

public void visitGETSTATIC(de.fub.bytecode.generic.GETSTATIC o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitGETSTATIC in interface de.fub.bytecode.generic.Visitor
Overrides:
visitGETSTATIC in class de.fub.bytecode.generic.EmptyVisitor

visitGOTO

public void visitGOTO(de.fub.bytecode.generic.GOTO o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitGOTO in interface de.fub.bytecode.generic.Visitor
Overrides:
visitGOTO in class de.fub.bytecode.generic.EmptyVisitor

visitGOTO_W

public void visitGOTO_W(de.fub.bytecode.generic.GOTO_W o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitGOTO_W in interface de.fub.bytecode.generic.Visitor
Overrides:
visitGOTO_W in class de.fub.bytecode.generic.EmptyVisitor

visitI2B

public void visitI2B(de.fub.bytecode.generic.I2B o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitI2B in interface de.fub.bytecode.generic.Visitor
Overrides:
visitI2B in class de.fub.bytecode.generic.EmptyVisitor

visitI2C

public void visitI2C(de.fub.bytecode.generic.I2C o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitI2C in interface de.fub.bytecode.generic.Visitor
Overrides:
visitI2C in class de.fub.bytecode.generic.EmptyVisitor

visitI2D

public void visitI2D(de.fub.bytecode.generic.I2D o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitI2D in interface de.fub.bytecode.generic.Visitor
Overrides:
visitI2D in class de.fub.bytecode.generic.EmptyVisitor

visitI2F

public void visitI2F(de.fub.bytecode.generic.I2F o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitI2F in interface de.fub.bytecode.generic.Visitor
Overrides:
visitI2F in class de.fub.bytecode.generic.EmptyVisitor

visitI2L

public void visitI2L(de.fub.bytecode.generic.I2L o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitI2L in interface de.fub.bytecode.generic.Visitor
Overrides:
visitI2L in class de.fub.bytecode.generic.EmptyVisitor

visitI2S

public void visitI2S(de.fub.bytecode.generic.I2S o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitI2S in interface de.fub.bytecode.generic.Visitor
Overrides:
visitI2S in class de.fub.bytecode.generic.EmptyVisitor

visitIADD

public void visitIADD(de.fub.bytecode.generic.IADD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIADD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIADD in class de.fub.bytecode.generic.EmptyVisitor

visitIALOAD

public void visitIALOAD(de.fub.bytecode.generic.IALOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIALOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIALOAD in class de.fub.bytecode.generic.EmptyVisitor

visitIAND

public void visitIAND(de.fub.bytecode.generic.IAND o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIAND in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIAND in class de.fub.bytecode.generic.EmptyVisitor

visitIASTORE

public void visitIASTORE(de.fub.bytecode.generic.IASTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIASTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIASTORE in class de.fub.bytecode.generic.EmptyVisitor

visitICONST

public void visitICONST(de.fub.bytecode.generic.ICONST o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitICONST in interface de.fub.bytecode.generic.Visitor
Overrides:
visitICONST in class de.fub.bytecode.generic.EmptyVisitor

visitIDIV

public void visitIDIV(de.fub.bytecode.generic.IDIV o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIDIV in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIDIV in class de.fub.bytecode.generic.EmptyVisitor

visitIF_ACMPEQ

public void visitIF_ACMPEQ(de.fub.bytecode.generic.IF_ACMPEQ o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIF_ACMPEQ in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIF_ACMPEQ in class de.fub.bytecode.generic.EmptyVisitor

visitIF_ACMPNE

public void visitIF_ACMPNE(de.fub.bytecode.generic.IF_ACMPNE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIF_ACMPNE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIF_ACMPNE in class de.fub.bytecode.generic.EmptyVisitor

visitIF_ICMPEQ

public void visitIF_ICMPEQ(de.fub.bytecode.generic.IF_ICMPEQ o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIF_ICMPEQ in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIF_ICMPEQ in class de.fub.bytecode.generic.EmptyVisitor

visitIF_ICMPGE

public void visitIF_ICMPGE(de.fub.bytecode.generic.IF_ICMPGE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIF_ICMPGE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIF_ICMPGE in class de.fub.bytecode.generic.EmptyVisitor

visitIF_ICMPGT

public void visitIF_ICMPGT(de.fub.bytecode.generic.IF_ICMPGT o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIF_ICMPGT in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIF_ICMPGT in class de.fub.bytecode.generic.EmptyVisitor

visitIF_ICMPLE

public void visitIF_ICMPLE(de.fub.bytecode.generic.IF_ICMPLE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIF_ICMPLE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIF_ICMPLE in class de.fub.bytecode.generic.EmptyVisitor

visitIF_ICMPLT

public void visitIF_ICMPLT(de.fub.bytecode.generic.IF_ICMPLT o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIF_ICMPLT in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIF_ICMPLT in class de.fub.bytecode.generic.EmptyVisitor

visitIF_ICMPNE

public void visitIF_ICMPNE(de.fub.bytecode.generic.IF_ICMPNE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIF_ICMPNE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIF_ICMPNE in class de.fub.bytecode.generic.EmptyVisitor

visitIFEQ

public void visitIFEQ(de.fub.bytecode.generic.IFEQ o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIFEQ in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIFEQ in class de.fub.bytecode.generic.EmptyVisitor

visitIFGE

public void visitIFGE(de.fub.bytecode.generic.IFGE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIFGE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIFGE in class de.fub.bytecode.generic.EmptyVisitor

visitIFGT

public void visitIFGT(de.fub.bytecode.generic.IFGT o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIFGT in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIFGT in class de.fub.bytecode.generic.EmptyVisitor

visitIFLE

public void visitIFLE(de.fub.bytecode.generic.IFLE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIFLE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIFLE in class de.fub.bytecode.generic.EmptyVisitor

visitIFLT

public void visitIFLT(de.fub.bytecode.generic.IFLT o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIFLT in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIFLT in class de.fub.bytecode.generic.EmptyVisitor

visitIFNE

public void visitIFNE(de.fub.bytecode.generic.IFNE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIFNE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIFNE in class de.fub.bytecode.generic.EmptyVisitor

visitIFNONNULL

public void visitIFNONNULL(de.fub.bytecode.generic.IFNONNULL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIFNONNULL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIFNONNULL in class de.fub.bytecode.generic.EmptyVisitor

visitIFNULL

public void visitIFNULL(de.fub.bytecode.generic.IFNULL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIFNULL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIFNULL in class de.fub.bytecode.generic.EmptyVisitor

visitIINC

public void visitIINC(de.fub.bytecode.generic.IINC o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIINC in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIINC in class de.fub.bytecode.generic.EmptyVisitor

visitILOAD

public void visitILOAD(de.fub.bytecode.generic.ILOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitILOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitILOAD in class de.fub.bytecode.generic.EmptyVisitor

visitIMUL

public void visitIMUL(de.fub.bytecode.generic.IMUL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIMUL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIMUL in class de.fub.bytecode.generic.EmptyVisitor

visitINEG

public void visitINEG(de.fub.bytecode.generic.INEG o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitINEG in interface de.fub.bytecode.generic.Visitor
Overrides:
visitINEG in class de.fub.bytecode.generic.EmptyVisitor

visitINSTANCEOF

public void visitINSTANCEOF(de.fub.bytecode.generic.INSTANCEOF o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitINSTANCEOF in interface de.fub.bytecode.generic.Visitor
Overrides:
visitINSTANCEOF in class de.fub.bytecode.generic.EmptyVisitor

visitINVOKEINTERFACE

public void visitINVOKEINTERFACE(de.fub.bytecode.generic.INVOKEINTERFACE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitINVOKEINTERFACE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitINVOKEINTERFACE in class de.fub.bytecode.generic.EmptyVisitor

visitINVOKESPECIAL

public void visitINVOKESPECIAL(de.fub.bytecode.generic.INVOKESPECIAL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitINVOKESPECIAL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitINVOKESPECIAL in class de.fub.bytecode.generic.EmptyVisitor

visitINVOKESTATIC

public void visitINVOKESTATIC(de.fub.bytecode.generic.INVOKESTATIC o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitINVOKESTATIC in interface de.fub.bytecode.generic.Visitor
Overrides:
visitINVOKESTATIC in class de.fub.bytecode.generic.EmptyVisitor

visitINVOKEVIRTUAL

public void visitINVOKEVIRTUAL(de.fub.bytecode.generic.INVOKEVIRTUAL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitINVOKEVIRTUAL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitINVOKEVIRTUAL in class de.fub.bytecode.generic.EmptyVisitor

visitIOR

public void visitIOR(de.fub.bytecode.generic.IOR o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIOR in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIOR in class de.fub.bytecode.generic.EmptyVisitor

visitIREM

public void visitIREM(de.fub.bytecode.generic.IREM o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIREM in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIREM in class de.fub.bytecode.generic.EmptyVisitor

visitIRETURN

public void visitIRETURN(de.fub.bytecode.generic.IRETURN o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIRETURN in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIRETURN in class de.fub.bytecode.generic.EmptyVisitor

visitISHL

public void visitISHL(de.fub.bytecode.generic.ISHL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitISHL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitISHL in class de.fub.bytecode.generic.EmptyVisitor

visitISHR

public void visitISHR(de.fub.bytecode.generic.ISHR o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitISHR in interface de.fub.bytecode.generic.Visitor
Overrides:
visitISHR in class de.fub.bytecode.generic.EmptyVisitor

visitISTORE

public void visitISTORE(de.fub.bytecode.generic.ISTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitISTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitISTORE in class de.fub.bytecode.generic.EmptyVisitor

visitISUB

public void visitISUB(de.fub.bytecode.generic.ISUB o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitISUB in interface de.fub.bytecode.generic.Visitor
Overrides:
visitISUB in class de.fub.bytecode.generic.EmptyVisitor

visitIUSHR

public void visitIUSHR(de.fub.bytecode.generic.IUSHR o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIUSHR in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIUSHR in class de.fub.bytecode.generic.EmptyVisitor

visitIXOR

public void visitIXOR(de.fub.bytecode.generic.IXOR o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitIXOR in interface de.fub.bytecode.generic.Visitor
Overrides:
visitIXOR in class de.fub.bytecode.generic.EmptyVisitor

visitJSR

public void visitJSR(de.fub.bytecode.generic.JSR o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitJSR in interface de.fub.bytecode.generic.Visitor
Overrides:
visitJSR in class de.fub.bytecode.generic.EmptyVisitor

visitJSR_W

public void visitJSR_W(de.fub.bytecode.generic.JSR_W o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitJSR_W in interface de.fub.bytecode.generic.Visitor
Overrides:
visitJSR_W in class de.fub.bytecode.generic.EmptyVisitor

visitL2D

public void visitL2D(de.fub.bytecode.generic.L2D o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitL2D in interface de.fub.bytecode.generic.Visitor
Overrides:
visitL2D in class de.fub.bytecode.generic.EmptyVisitor

visitL2F

public void visitL2F(de.fub.bytecode.generic.L2F o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitL2F in interface de.fub.bytecode.generic.Visitor
Overrides:
visitL2F in class de.fub.bytecode.generic.EmptyVisitor

visitL2I

public void visitL2I(de.fub.bytecode.generic.L2I o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitL2I in interface de.fub.bytecode.generic.Visitor
Overrides:
visitL2I in class de.fub.bytecode.generic.EmptyVisitor

visitLADD

public void visitLADD(de.fub.bytecode.generic.LADD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLADD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLADD in class de.fub.bytecode.generic.EmptyVisitor

visitLALOAD

public void visitLALOAD(de.fub.bytecode.generic.LALOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLALOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLALOAD in class de.fub.bytecode.generic.EmptyVisitor

visitLAND

public void visitLAND(de.fub.bytecode.generic.LAND o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLAND in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLAND in class de.fub.bytecode.generic.EmptyVisitor

visitLASTORE

public void visitLASTORE(de.fub.bytecode.generic.LASTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLASTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLASTORE in class de.fub.bytecode.generic.EmptyVisitor

visitLCMP

public void visitLCMP(de.fub.bytecode.generic.LCMP o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLCMP in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLCMP in class de.fub.bytecode.generic.EmptyVisitor

visitLCONST

public void visitLCONST(de.fub.bytecode.generic.LCONST o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLCONST in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLCONST in class de.fub.bytecode.generic.EmptyVisitor

visitLDC

public void visitLDC(de.fub.bytecode.generic.LDC o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLDC in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLDC in class de.fub.bytecode.generic.EmptyVisitor

visitLDC_W

public void visitLDC_W(de.fub.bytecode.generic.LDC_W o)
Symbolically executes the corresponding Java Virtual Machine instruction.

visitLDC2_W

public void visitLDC2_W(de.fub.bytecode.generic.LDC2_W o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLDC2_W in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLDC2_W in class de.fub.bytecode.generic.EmptyVisitor

visitLDIV

public void visitLDIV(de.fub.bytecode.generic.LDIV o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLDIV in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLDIV in class de.fub.bytecode.generic.EmptyVisitor

visitLLOAD

public void visitLLOAD(de.fub.bytecode.generic.LLOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLLOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLLOAD in class de.fub.bytecode.generic.EmptyVisitor

visitLMUL

public void visitLMUL(de.fub.bytecode.generic.LMUL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLMUL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLMUL in class de.fub.bytecode.generic.EmptyVisitor

visitLNEG

public void visitLNEG(de.fub.bytecode.generic.LNEG o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLNEG in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLNEG in class de.fub.bytecode.generic.EmptyVisitor

visitLOOKUPSWITCH

public void visitLOOKUPSWITCH(de.fub.bytecode.generic.LOOKUPSWITCH o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLOOKUPSWITCH in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLOOKUPSWITCH in class de.fub.bytecode.generic.EmptyVisitor

visitLOR

public void visitLOR(de.fub.bytecode.generic.LOR o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLOR in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLOR in class de.fub.bytecode.generic.EmptyVisitor

visitLREM

public void visitLREM(de.fub.bytecode.generic.LREM o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLREM in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLREM in class de.fub.bytecode.generic.EmptyVisitor

visitLRETURN

public void visitLRETURN(de.fub.bytecode.generic.LRETURN o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLRETURN in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLRETURN in class de.fub.bytecode.generic.EmptyVisitor

visitLSHL

public void visitLSHL(de.fub.bytecode.generic.LSHL o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLSHL in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLSHL in class de.fub.bytecode.generic.EmptyVisitor

visitLSHR

public void visitLSHR(de.fub.bytecode.generic.LSHR o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLSHR in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLSHR in class de.fub.bytecode.generic.EmptyVisitor

visitLSTORE

public void visitLSTORE(de.fub.bytecode.generic.LSTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLSTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLSTORE in class de.fub.bytecode.generic.EmptyVisitor

visitLSUB

public void visitLSUB(de.fub.bytecode.generic.LSUB o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLSUB in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLSUB in class de.fub.bytecode.generic.EmptyVisitor

visitLUSHR

public void visitLUSHR(de.fub.bytecode.generic.LUSHR o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLUSHR in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLUSHR in class de.fub.bytecode.generic.EmptyVisitor

visitLXOR

public void visitLXOR(de.fub.bytecode.generic.LXOR o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitLXOR in interface de.fub.bytecode.generic.Visitor
Overrides:
visitLXOR in class de.fub.bytecode.generic.EmptyVisitor

visitMONITORENTER

public void visitMONITORENTER(de.fub.bytecode.generic.MONITORENTER o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitMONITORENTER in interface de.fub.bytecode.generic.Visitor
Overrides:
visitMONITORENTER in class de.fub.bytecode.generic.EmptyVisitor

visitMONITOREXIT

public void visitMONITOREXIT(de.fub.bytecode.generic.MONITOREXIT o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitMONITOREXIT in interface de.fub.bytecode.generic.Visitor
Overrides:
visitMONITOREXIT in class de.fub.bytecode.generic.EmptyVisitor

visitMULTIANEWARRAY

public void visitMULTIANEWARRAY(de.fub.bytecode.generic.MULTIANEWARRAY o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitMULTIANEWARRAY in interface de.fub.bytecode.generic.Visitor
Overrides:
visitMULTIANEWARRAY in class de.fub.bytecode.generic.EmptyVisitor

visitNEW

public void visitNEW(de.fub.bytecode.generic.NEW o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitNEW in interface de.fub.bytecode.generic.Visitor
Overrides:
visitNEW in class de.fub.bytecode.generic.EmptyVisitor

visitNEWARRAY

public void visitNEWARRAY(de.fub.bytecode.generic.NEWARRAY o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitNEWARRAY in interface de.fub.bytecode.generic.Visitor
Overrides:
visitNEWARRAY in class de.fub.bytecode.generic.EmptyVisitor

visitNOP

public void visitNOP(de.fub.bytecode.generic.NOP o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitNOP in interface de.fub.bytecode.generic.Visitor
Overrides:
visitNOP in class de.fub.bytecode.generic.EmptyVisitor

visitPOP

public void visitPOP(de.fub.bytecode.generic.POP o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitPOP in interface de.fub.bytecode.generic.Visitor
Overrides:
visitPOP in class de.fub.bytecode.generic.EmptyVisitor

visitPOP2

public void visitPOP2(de.fub.bytecode.generic.POP2 o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitPOP2 in interface de.fub.bytecode.generic.Visitor
Overrides:
visitPOP2 in class de.fub.bytecode.generic.EmptyVisitor

visitPUTFIELD

public void visitPUTFIELD(de.fub.bytecode.generic.PUTFIELD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitPUTFIELD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitPUTFIELD in class de.fub.bytecode.generic.EmptyVisitor

visitPUTSTATIC

public void visitPUTSTATIC(de.fub.bytecode.generic.PUTSTATIC o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitPUTSTATIC in interface de.fub.bytecode.generic.Visitor
Overrides:
visitPUTSTATIC in class de.fub.bytecode.generic.EmptyVisitor

visitRET

public void visitRET(de.fub.bytecode.generic.RET o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitRET in interface de.fub.bytecode.generic.Visitor
Overrides:
visitRET in class de.fub.bytecode.generic.EmptyVisitor

visitRETURN

public void visitRETURN(de.fub.bytecode.generic.RETURN o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitRETURN in interface de.fub.bytecode.generic.Visitor
Overrides:
visitRETURN in class de.fub.bytecode.generic.EmptyVisitor

visitSALOAD

public void visitSALOAD(de.fub.bytecode.generic.SALOAD o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitSALOAD in interface de.fub.bytecode.generic.Visitor
Overrides:
visitSALOAD in class de.fub.bytecode.generic.EmptyVisitor

visitSASTORE

public void visitSASTORE(de.fub.bytecode.generic.SASTORE o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitSASTORE in interface de.fub.bytecode.generic.Visitor
Overrides:
visitSASTORE in class de.fub.bytecode.generic.EmptyVisitor

visitSIPUSH

public void visitSIPUSH(de.fub.bytecode.generic.SIPUSH o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitSIPUSH in interface de.fub.bytecode.generic.Visitor
Overrides:
visitSIPUSH in class de.fub.bytecode.generic.EmptyVisitor

visitSWAP

public void visitSWAP(de.fub.bytecode.generic.SWAP o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitSWAP in interface de.fub.bytecode.generic.Visitor
Overrides:
visitSWAP in class de.fub.bytecode.generic.EmptyVisitor

visitTABLESWITCH

public void visitTABLESWITCH(de.fub.bytecode.generic.TABLESWITCH o)
Symbolically executes the corresponding Java Virtual Machine instruction.
Specified by:
visitTABLESWITCH in interface de.fub.bytecode.generic.Visitor
Overrides:
visitTABLESWITCH in class de.fub.bytecode.generic.EmptyVisitor

(c) Enver Haase 2001, released under the FSF's "GPL version 2" license.