jTracer  1.03
Stack trace visualization tool
int org.libcsdbg.jtracer.SessionManager.getTraceCount ( )

Get the total number of traces.

Returns
the trace count

Definition at line 191 of file SessionManager.java.

References org.libcsdbg.jtracer.SessionManager.sessions.

Referenced by org.libcsdbg.jtracer.MainFrame.propertyChange().

192  {
193  int cnt = 0;
194  for (int i = 0, sz = sessions.size(); i < sz; i++)
195  cnt += sessions.get(i).getTraceCount();
196 
197  return cnt;
198  }

+ Here is the caller graph for this function: