|
questions on plug-in development February 07, 2010 07:39PM |
Registered: 15 years ago Posts: 4 |
|
Re: questions on plug-in development February 07, 2010 07:49PM |
Admin Registered: 20 years ago Posts: 2,426 |
/**
* Shows simple OK/Cancel dialog with given content of given container
*
* @param container a container with SWING components to show
* @param dialogTitle title for dialog
* @return returns true, if user pressed OK button, false otherwise
* @throws Exception if something went wrong or thread was interrupted
*/
boolean showOKCancelDialog(Component container, String dialogTitle) throws Exception;
where container is eg. JPanel --> see some Netbeans Matisse tutorial on the web how to use it to create Panel with components

|
Re: questions on plug-in development February 07, 2010 08:01PM |
Registered: 15 years ago Posts: 4 |
|
Re: questions on plug-in development February 07, 2010 08:03PM |
Admin Registered: 20 years ago Posts: 2,426 |
|
Re: questions on plug-in development February 07, 2010 08:06PM |
Registered: 15 years ago Posts: 4 |
|
Re: questions on plug-in development February 07, 2010 08:25PM |
Registered: 15 years ago Posts: 4 |
|
Re: questions on plug-in development February 07, 2010 08:27PM |
Admin Registered: 20 years ago Posts: 2,426 |
|
Re: questions on plug-in development February 07, 2010 08:35PM |
Admin Registered: 16 years ago Posts: 2,095 |
|
Re: questions on plug-in development February 07, 2010 08:40PM |
Admin Registered: 20 years ago Posts: 2,426 |