Recommended: Sing it, brah! 5 fabulous songs for developers
JW's Top 5
Optimize with a SATA RAID Storage Solution
Range of capacities as low as $1250 per TB. Ideal if you currently rely on servers/disks/JBODs
Page 6 of 8
// Create a data entry panel
StandardDialog dialog = new StandardDialog( (Frame)null, "Customer Details");
dialog.setContentPane(panel);
dialog.pack();
dialog.show();
if(!dialog.hasUserCancelled()) { // Process the data in the panel }
An example of using StandardDialog by subclassing is shown in the following code fragment: