org.eclipse.jface.util |
Package-level Javadoc
Provides useful building blocks used throughout JFace,
including property change events, a listener list implementation, and runtime
checked assertions.
|
Java Source File Name | Type | Comment |
Assert.java | Class | Assert is useful for for embedding runtime sanity checks
in code. |
DelegatingDragAdapter.java | Class | A DelegatingDragAdapter is a DragSourceListener that
maintains and delegates to a set of
TransferDragSourceListener s. |
DelegatingDropAdapter.java | Class | A DelegatingDropAdapter is a DropTargetListener that
maintains and delegates to a set of
TransferDropTargetListener s. |
Geometry.java | Class | Contains static methods for performing simple geometric operations
on the SWT geometry classes. |
ILogger.java | Interface | A mechanism to log errors throughout JFace. |
IOpenEventListener.java | Interface | Listener for open events which are generated on selection
of default selection depending on the user preferences.
Usage:
OpenStrategy handler = new OpenStrategy(control);
handler.addOpenListener(new IOpenEventListener() {
public void handleOpen(SelectionEvent e) {
... |
IPropertyChangeListener.java | Interface | Listener for property changes.
Usage:
IPropertyChangeListener listener =
new IPropertyChangeListener() {
public void propertyChange(PropertyChangeEvent event) {
... |
ISafeRunnableRunner.java | Interface | Runs a safe runnables. |
ListenerList.java | Class | This class is used to maintain a list of listeners, and is used in the
implementations of several classes within JFace which allow you to register
listeners of various kinds. |
LocalSelectionTransfer.java | Class | A LocalSelectionTransfer may be used for drag and drop operations
within the same instance of Eclipse.
The selection is made available directly for use in the DropTargetListener.
dropAccept method. |
OpenStrategy.java | Class | Implementation of single-click and double-click strategies.
Usage:
OpenStrategy handler = new OpenStrategy(control);
handler.addOpenListener(new IOpenEventListener() {
public void handleOpen(SelectionEvent e) {
... |
Policy.java | Class | The Policy class handles settings for behaviour, debug flags and logging
within JFace. |
PropertyChangeEvent.java | Class | An event object describing a change to a named property.
This concrete class was designed to be instantiated, but may
also be subclassed if required.
The JFace frameworks contain classes that report property
change events for internal state changes that may be of interest
to external parties. |
SafeRunnable.java | Class | Implements a default implementation of ISafeRunnable. |
SafeRunnableDialog.java | Class | SafeRunnableDialog is a dialog that can show the results of multiple safe
runnable errors. |
TransferDragSourceListener.java | Interface | A TransferDragSourceListener is a DragSourceListener
that can handle one type of SWT
Transfer . |
TransferDropTargetListener.java | Interface | A TransferDropTargetListener is a DropTragetListener
that handles one type of SWT
Transfer . |
Util.java | Class |
A static class providing utility methods to all of JFace. |