org.eclipse.jface.util |
|
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. |
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.
It is a fairly lightweight object, occupying minimal space when
no listeners are registered.
Note that the add method checks for and eliminates
duplicates based on identity (not equality). |
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 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. |
Util.java | Class |
A static class providing utility methods to all of JFace. |