TechTrader Bytecode Toolkit

com.techtrader.modules.tools.bytecode
Class MonitorExitInstruction

java.lang.Object
  |
  +--com.techtrader.modules.tools.bytecode.Instruction
        |
        +--com.techtrader.modules.tools.bytecode.MonitorInstruction
              |
              +--com.techtrader.modules.tools.bytecode.MonitorExitInstruction

public class MonitorExitInstruction
extends MonitorInstruction

MONITOREXIT

Author:
Abe White

Fields inherited from class com.techtrader.modules.tools.bytecode.Instruction
_byteIndex, _opcode, _opcodeTypes, _owner
 
Constructor Summary
protected MonitorExitInstruction(Code owner)
           
 
Method Summary
 void acceptVisit(BCVisitor visit)
          Accept a visit from a BCVisitor, calling the appropriate methods to notify the visitor that it has entered this entity, and to provide it with the proper callbacks for each sub-entity owned by this object.
 
Methods inherited from class com.techtrader.modules.tools.bytecode.MonitorInstruction
getStackChange
 
Methods inherited from class com.techtrader.modules.tools.bytecode.Instruction
copy, equals, getByteIndex, getLength, getName, getOpCode, getOwner, invalidate, readData, setByteIndex, setOpCode, writeData
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MonitorExitInstruction

protected MonitorExitInstruction(Code owner)
Method Detail

acceptVisit

public void acceptVisit(BCVisitor visit)
Description copied from interface: VisitAcceptor
Accept a visit from a BCVisitor, calling the appropriate methods to notify the visitor that it has entered this entity, and to provide it with the proper callbacks for each sub-entity owned by this object.
Overrides:
acceptVisit in class Instruction

TechTrader Bytecode Toolkit