questions on plug-in development February 07, 2010 07:39PM |
Registered: 14 years ago Posts: 4 |
Re: questions on plug-in development February 07, 2010 07:49PM |
Admin Registered: 19 years ago Posts: 2,425 |
/** * 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: 14 years ago Posts: 4 |
Re: questions on plug-in development February 07, 2010 08:03PM |
Admin Registered: 19 years ago Posts: 2,425 |
Re: questions on plug-in development February 07, 2010 08:06PM |
Registered: 14 years ago Posts: 4 |
Re: questions on plug-in development February 07, 2010 08:25PM |
Registered: 14 years ago Posts: 4 |
Re: questions on plug-in development February 07, 2010 08:27PM |
Admin Registered: 19 years ago Posts: 2,425 |
Re: questions on plug-in development February 07, 2010 08:35PM |
Admin Registered: 15 years ago Posts: 2,094 |
Re: questions on plug-in development February 07, 2010 08:40PM |
Admin Registered: 19 years ago Posts: 2,425 |