Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.bsf.dbline
Class BreakPoint  view BreakPoint download BreakPoint.java

java.lang.Object
  extended byorg.apache.bsf.dbline.BreakPoint

public class BreakPoint
extends java.lang.Object

This class instances represent breakpoints as known by the client debugger. This is fairly straightforward code. Note the simple but efficient allocation scheme for breakpoint identifiers. Whatever scheme is used, these identifiers should remain unique throughout an entire debug session. Note also that these breakpoins are only supporting a definition based on line numbers, char offsets are not supported.


Field Summary
(package private) static int IdGenerator
           
(package private)  Buffer m_buffer
           
(package private)  int m_id
           
(package private)  int m_lineno
           
 
Constructor Summary
BreakPoint()
          BreakPoint constructor comment.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

IdGenerator

static int IdGenerator

m_id

int m_id

m_lineno

int m_lineno

m_buffer

Buffer m_buffer
Constructor Detail

BreakPoint

public BreakPoint()
BreakPoint constructor comment.