protected void fireDebugBreak(BreakInformation info) {
for (int i = 0; i < debugListeners.size(); i++) {
DebugBreakListener dl = debugListeners.get(i);
if (dl == null)
continue;
dl.onBreak(this, info);
}
}
protected void prepare() {
// Do nothing by default...