Skip to content

Instantly share code, notes, and snippets.

@0x000000AC
Created November 30, 2012 22:31
Show Gist options
  • Save 0x000000AC/4179173 to your computer and use it in GitHub Desktop.
Save 0x000000AC/4179173 to your computer and use it in GitHub Desktop.
This program prints a JOptionPane window with a message
/***********************************************
* JOptionInstallationDialog.java
* Aaron P. Clark
*
* This program prints a JOptionPane window with a message
***********************************************/
import javax.swing.JOptionPane;
public class JOptionInstallationDialog
{
public static void main(String[] args)
{
JOptionPane.showMessageDialog(null,
"Before Starting the installation. " +
"shut down all applications.");
} // end main
} // end class InstallationDialog
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment