jTracer  1.03
Stack trace visualization tool
void org.libcsdbg.jtracer.Alert.actionPerformed ( ActionEvent  event)

Handler for action events fired by the alert buttons.

Parameters
[in]eventthe action event

Definition at line 207 of file Alert.java.

References org.libcsdbg.jtracer.Alert.reply.

208  {
209  try {
210  String cmd = event.getActionCommand();
211  if (cmd.equals("Ok"))
212  reply = true;
213 
214  dispose();
215  }
216 
217  catch (Throwable t) {
218  Registry.debug(t);
219  }
220  }
boolean reply
The user reply.
Definition: Alert.java:44