Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
how to add this code to BEAN SHELL SCRIPT

import javax.swing.JFrame;
import javax.swing.JOptionPane;
 
public class ShowMessageDialogExample1
{
  public static void main(String\[\] args)
  {    String backupDir = "/Users/al/backups";         // create a jframe    JFrame frame = new JFrame("JOptionPane showMessageDialog example");         // show a joptionpane dialog using showMessageDialog    JOptionPane.showMessageDialog(frame,        "Problem writing to backup directory: '" + backupDir + "'.");    System.exit(0);  }
}