jTracer  1.03
Stack trace visualization tool
static boolean org.libcsdbg.jtracer.Alert.prompt ( JFrame  owner,
String  msg 
)
static

Show an alert prompting the user to make a choice.

Parameters
[in]ownerthe parent frame
[in]msgthe prompt message (it can be multiline)
Returns
the user choice

Definition at line 195 of file Alert.java.

References org.libcsdbg.jtracer.Alert.QUESTION_MSG.

196  {
197  Alert prompt = new Alert(owner, msg, QUESTION_MSG);
198  return prompt.reply;
199  }
static boolean prompt(JFrame owner, String msg)
Show an alert prompting the user to make a choice.
Definition: Alert.java:195
static final short QUESTION_MSG
Alert type for prompt messages.
Definition: Alert.java:35