org.eclipse.jface.dialogs

Home
Java Source Code / Java Documentation 2
1.2D
2.3D
3.Ajax
4.Algebra
5.App Engine
6.Aspect
7.Assemble
8.Cache
9.Cassandra
10.Chat
11.Cloud
12.CMS
13.CouchDB
14.Crypt
15.Database
16.Distributed
17.Eclipse
18.Facebook
19.File
20.Forum
21.GAE
22.Game
23.Google tech
24.Graph
25.Graphic
26.GWT
27.Hibernate
28.HTML
29.HTTP
30.Image
31.IntelliJ
32.IRC
33.J2EE
34.J2ME
35.JDBC
36.JPA
37.JSON
38.JSR
39.JUnit
40.JVM
41.Language
42.Linux
43.Math
44.Maven
45.Media
46.Messenger
47.MiddleWare
48.Mobile
49.Mock
50.MongoDB
51.Mp3
52.Music
53.MVC
54.Network
55.OpenID
56.OSGi
57.Parse
58.Persist
59.Petri
60.Phone
61.Physics
62.REST
63.Robot
64.RPC
65.RSS
66.Ruby
67.Script
68.Search
69.Spring
70.SQL
71.SSH
72.Sudoku
73.Swing
74.Tapestry
75.Test
76.Text
77.Torrent
78.Twitter
79.UML
80.UnTagged
81.Utilities
82.Web
83.Wiki
84.XML
Java Source Code / Java Documentation 2 » Script » java2script » org.eclipse.jface.dialogs 
org.eclipse.jface.dialogs
Java Source File NameTypeComment
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.
ErrorDialog.javaClass A dialog to display one or more errors to the user, as contained in an IStatus object.
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.
IMessageProvider.javaInterface Minimal interface to a message provider.
InputDialog.javaClass A simple input dialog for soliciting an input string from the user.
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.
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.
ww_w_.__ja___va__2_s___.co__m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.