public void removeListener(DebugServiceListener lst) {
listeners.remove(lst);
}
private void fireSessionEnded(DebugSession session) {
DebugServiceEvent evt = new DebugServiceEvent(this, session);
for (DebugServiceListener lst : listeners) {
lst.debugSessionEnded(evt);
}
}