Created
November 30, 2012 22:31
-
-
Save 0x000000AC/4179173 to your computer and use it in GitHub Desktop.
This program prints a JOptionPane window with a message
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************** | |
* 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