jTracer  1.03
Stack trace visualization tool
void org.libcsdbg.jtracer.SessionManager.windowIconified ( WindowEvent  event)

Handler for events fired for iconified windows.

Parameters
[in]eventthe iconified window event

Definition at line 349 of file SessionManager.java.

References org.libcsdbg.jtracer.SessionManager.owner, and org.libcsdbg.jtracer.SessionManager.setIconified().

350  {
351  try {
352  JFrame f = (JFrame) event.getWindow();
353  if (f.equals(owner))
354  setIconified(true);
355  }
356 
357  catch (Throwable t) {
358  Registry.debug(t);
359  }
360  }
void setIconified(final boolean how)
Minimize or restore all client windows.

+ Here is the call graph for this function: