org.eclipse.jface.dialogs

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » jface » org.eclipse.jface.dialogs 
org.eclipse.jface.dialogs
Package-level Javadoc Provides support for dialogs.

Package Specification

A dialog is a specialized window, typically consisting of a dialog area and a button bar, designed for narrow-focussed communication with the user.

The dialog framework consists of an abstract base class (Dialog), along with more concrete dialog subclasses for displaying messages (MessageDialog), soliciting text input (InputDialog), and displaying progress during a long-running operation (ProgressMonitorDialog).

Dialog stores (IDialogStore, DialogStore) provide a general framework for organizing a dialog's settings into key/value pairs. Multi-page dialogs are made easier through the use of dialog pages (IDialogPage, DialogPage).

Note: None of the classes in this package maintain global state.
 
 
 

Java Source File NameTypeComment
AnimatorFactory.javaClass Factory for control animators used by JFace to animate the display of an SWT Control.
ControlAnimator.javaClass ControlAnimator provides a simple implementation to display or hide a control at the bottom of the parent composite.
ControlEnableState.javaClass Helper class to save the enable/disable state of a control including all its descendent controls.
Dialog.javaClass A dialog is a specialized window used for narrow-focused communication with the user.

Dialogs are usually modal.

DialogMessageArea.javaClass The DialogMessageArea is a resusable component for adding an accessible message area to a dialog.
DialogPage.javaClass Abstract base implementation of a dialog page.
DialogSettings.javaClass Concrete implementation of a dialog settings (IDialogSettings) using a hash table and XML.
DialogTray.javaClass

This class is the abstract superclass of all dialog trays.

ErrorDialog.javaClass A dialog to display one or more errors to the user, as contained in an IStatus object.
ErrorSupportProvider.javaClass A ErrorSupportProvider defines the area to be shown in an error dialog for extra support information.
IconAndMessageDialog.javaClass The IconAndMessageDialog is the abstract superclass of dialogs that have an icon and a message as the first two widgets.
IDialogBlockedHandler.javaInterface The IDialogBlockedHandler is the handler used by JFace to provide extra information when a blocking has occured.
IDialogConstants.javaInterface IDialogConstants is the interface for common dialog strings and ids used throughout JFace.
IDialogPage.javaInterface Interface for a page in a multi-page dialog.
IDialogSettings.javaInterface An interface to a storage mechanism for making dialog settings persistent. The store manages a collection of key/value pairs.
IInputValidator.javaInterface The IInputValidator is the interface for simple validators.
ImageAndMessageArea.javaClass Instances of this class provide a message area to display a message and an associated image.
IMessageProvider.javaInterface Minimal interface to a message provider.
InputDialog.javaClass A simple input dialog for soliciting an input string from the user.
IPageChangedListener.javaInterface A listener which is notified when the current page of the multi-page dialog is changed.
IPageChangeProvider.javaInterface Minimal interface to a page change provider.
IPageChangingListener.javaInterface A listener which is notified when the current page of a multi-page dialog is changing.
MessageDialog.javaClass A dialog for showing messages to the user.
MessageDialogWithToggle.javaClass

A message dialog which also allows the user to adjust a toggle setting.

PageChangedEvent.javaClass Event object describing a page selection change.
PageChangingEvent.javaClass Event object describing an IDialogPage in the midst of changing.
PopupDialog.javaClass A lightweight, transient dialog that is popped up to show contextual or temporal information and is easily dismissed.
ProgressIndicator.javaClass A control for showing progress feedback for a long running operation.
ProgressMonitorDialog.javaClass A modal dialog that displays progress during a long running operation.

This concrete dialog class can be instantiated as is, or further subclassed as required.

Typical usage is:

 try {
 IRunnableWithProgress op = ...;
 new ProgressMonitorDialog(activeShell).run(true, true, op);
 } catch (InvocationTargetException e) {
 // handle exception
 } catch (InterruptedException e) {
 // handle cancelation
 }
 

Note that the ProgressMonitorDialog is not intended to be used with multiple runnables - this dialog should be discarded after completion of one IRunnableWithProgress and a new one instantiated for use by a second or sebsequent IRunnableWithProgress to ensure proper initialization.

Note that not forking the process will result in it running in the UI which may starve the UI.

StatusDialog.javaClass An abstract base class for dialogs with a status bar and OK/CANCEL buttons. The status message is specified in an IStatus which can be of severity ERROR, WARNING, INFO or OK.
TitleAreaDialog.javaClass A dialog that has a title area for displaying a title and an image as well as a common area for displaying a description, a message, or an error message.
TrayDialog.javaClass A TrayDialog is a specialized Dialog that can contain a tray on its side.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.