TechTrader Bytecode Toolkit

com.techtrader.modules.tools.bytecode
Class MonitorEnterInstruction

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

public class MonitorEnterInstruction
extends MonitorInstruction

MONITORENTER

Author:
Abe White

Fields inherited from class com.techtrader.modules.tools.bytecode.Instruction
_byteIndex, _opcode, _opcodeTypes, _owner
 
Constructor Summary
protected MonitorEnterInstruction(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

MonitorEnterInstruction

protected MonitorEnterInstruction(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