com.jeffpalm.basic.bytecode.instr
Class Breakpoint

java.lang.Object
  extended by com.jeffpalm.basic.bytecode.instr.Instruction
      extended by com.jeffpalm.basic.bytecode.instr.Breakpoint

public class Breakpoint
extends Instruction

Opcode 0xCA (202) is a reserved opcode with the mnemonic breakpoint. This opcode is reserved for internal use by a Java implementation, and must not appear in any class file - methods containing a breakpoint will fail verification. In Sun's implementation, the breakpoint opcode is used internally as a place-holder indicating a point in a method where control should pass to the Java debugger (jdb).


Constructor Summary
Breakpoint()
           
 
Method Summary
 byte[] getBytes()
           
 java.lang.String getName()
           
 java.lang.String toString()
           
 
Methods inherited from class com.jeffpalm.basic.bytecode.instr.Instruction
format, getLabel, length, opcode, setLabel, toHex, toHex, toInt, toInt
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Breakpoint

public Breakpoint()
Method Detail

getName

public java.lang.String getName()
Specified by:
getName in class Instruction

getBytes

public byte[] getBytes()
Specified by:
getBytes in class Instruction

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object