HomeSort by relevance Sort by last modified time
    Searched defs:JOptionPane (Results 1 - 6 of 6) sorted by null

  /external/proguard/src/proguard/gui/
MessageDialogRunnable.java 43 * @see JOptionPane#showMessageDialog(Component, Object, String, int)
66 * @see JOptionPane#showMessageDialog(Component, Object, String, int)
85 JOptionPane.showMessageDialog(parentComponent,
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/
AppletHarness.java 46 import javax.swing.JOptionPane;
82 JOptionPane.showMessageDialog(this, "An error has occured while "
86 JOptionPane.ERROR_MESSAGE);
SettingsDialog.java 570 JOptionPane.showMessageDialog(parent, message, "Error",
571 JOptionPane.ERROR_MESSAGE);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunner.java 38 import javax.swing.JOptionPane;
204 JOptionPane.showOptionDialog(null, message, title, JOptionPane.DEFAULT_OPTION,
205 JOptionPane.INFORMATION_MESSAGE, null, options, options[0]);
218 Object selectedValue = JOptionPane.showInputDialog(null, message, title,
219 JOptionPane.QUESTION_MESSAGE, null, possibleValues, possibleValues[0]);
239 return (String) JOptionPane.showInputDialog(null, message, title,
240 JOptionPane.QUESTION_MESSAGE, null, null, initialValue);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
WorkSpaceController.java 119 JOptionPane.showMessageDialog(view, "Testsuite saved to:\n" + currentTestSuite.getTestSuiteFile().getAbsolutePath());
195 JOptionPane.showMessageDialog(view, "Fail to run test:\n" + ex.getMessage(), "Error", JOptionPane.ERROR_MESSAGE);
  /external/ganymed-ssh2/examples/
SwingShell.java 23 import javax.swing.JOptionPane;
414 int choice = JOptionPane.showConfirmDialog(loginFrame, message);
416 if (choice == JOptionPane.YES_OPTION)
440 if (choice == JOptionPane.CANCEL_OPTION)
679 JOptionPane.showMessageDialog(loginFrame, "Exception: " + e.getMessage());
715 JOptionPane.showMessageDialog(loginFrame, "Please fill out both fields!");

Completed in 536 milliseconds