jTracer  1.03
Stack trace visualization tool
void org.libcsdbg.jtracer.SessionManager.disposeAll ( )

Definition at line 66 of file SessionManager.java.

References org.libcsdbg.jtracer.SessionManager.current, and org.libcsdbg.jtracer.SessionManager.sessions.

67  {
68  while (sessions.size() > 0) {
69  Session cur = sessions.remove(0);
70  cur.removeWindowListener(this);
71  cur.dispose();
72  }
73 
74  current = -1;
75  firePropertyChange("sessionCount", null, 0);
76  }
int current
Currently selected (focused) client.