super("ColorChooserDialog");
JDialog colorChooserDialog =
JColorChooser.createDialog(this, "This is a sample title", true,
new JColorChooser(), new ActionListener() {
public void actionPerformed(ActionEvent e) {System.exit(0);}
}, new ActionListener() {
public void actionPerformed(ActionEvent e) {System.exit(0);}
});
colorChooserDialog.show();