Interface | Description |
---|---|
MainApp |
An interface for classes that provide application resources.
|
Preferences |
An interface in common to preference classes in my applications.
|
QuitListener |
An interface for objects that wish to receive notification that the application
will soon be quitting.
|
Class | Description |
---|---|
AppUtilities |
A set of generic utilities that I have found useful and that are used by most of my
Java applications.
|
DecimalField |
A text field that validates it's input and only
accepts inputs that are a valid decimal number
such as 3.14159.
|
EscapeJDialog |
A dialog that responds to the user pressing the escape or enter keys for default
buttons (cancel and OK).
|
FormattedDocument |
A formatted document that uses a user supplied Format object to
control the format of the text in the document.
|
GenericActionListener |
A class that implements a generic action listener.
|
ImageSelection |
A
Transferable which implements the capability required
to transfer an Image . |
InstanceOfRowFilter<M extends javax.swing.table.TableModel,I extends java.lang.Integer> |
A RowFilter that filters based on the Class type of the model data with behavior
similar to the
instanceof operator. |
JButtonGroup |
Extends
javax.swing.ButtonGroup to provide methods that allow working
with button references instead of button models. |
JButtonGroupEdit |
Class used to record the changes made to a JButtonGroup
object which holds a list of JRadioButtons.
|
JStreamedTextArea |
A JTextArea component that can display text that has been streamed to it
using an OutputStream.
|
MacOSUtilities |
A set of utilities that are used by my programs when running under MacOS only.
|
MDIApplication |
This is a wrapper for an application instance.
|
SpringUtilities |
A 1.4 file that provides utility methods for
creating form- or grid-style layouts with SpringLayout.
|
StreamedTextViewer |
A window that displays a text area that can be written
to using an OutputStream.
|
TransferActionListener |
A class that tracks the focused component.
|
UneditableDefaultTableModel |
A DefaultTableModel that has been modified to mark the cells as uneditable.
|