See: Description
Class | Description |
---|---|
AutoCompletion |
This class helps for auto-completion of a JComboBox.
|
DispatcherAction |
This class offers the
Action benefits and also acts as a dispatcher. |
FlexibleGridLayout |
ToDo: Kommentieren Wichtig: Immer eine Instanz eigene Instanz pro Container!
|
SwingConnectionManager |
The SwingConnectionManager singelton makes the Swing callback handling
much more convenient.
|
SwingDecorator |
This classes helps a lot for I18N management, and acts as a decorator for
Swing components.
Instead of hard-coding a lot of resources (Tooltip, shortcut, name, ..) in Java code, use one or more resource files and SwingDecorator! The keys in a resource file are called I18nID's, and various aspects of a component are addressed with various suffixes (.title, .text, .mnemonic, .accelerator, .tooltip, .iconname). Example: A resource file contains the following lines:
myButton.text=Hello
The code to initialize the button would be something like:
JButton b= new JButton(); |
SwingDecoratorFunctionality |
This classes helps a lot for I18N management, and acts as a decorator for
Swing components.
Instead of hard-coding a lot of resources (Tooltip, shortcut, name, ..) in Java code, use one or more resource files and SwingDecorator! The keys in a resource file are called I18nID's, and various aspects of a component are addressed with various suffixes (.title, .text, .mnemonic, .accelerator, .tooltip, .iconname). Example: A resource file contains the following lines:
myButton.text=Hello
The code to initialize the button would be something like:
JButton b= new JButton(); |
SwingDecoratorFunctionality.MultiResourceBundle |
Helper class to support multiple ResourceBundles.
|
SwingMapping |
SwingMapping generates a string mapping for a tree of JComponent's.
|
TableLayout2 |
TableLayout2 adds symbolic column and row name support to TableLayout.
|
TitledSeparator |
The TitledSeparator generates a JSeparator with a text (title) at a
specified position (pos).
|
This package contains various classes that make Swing coding easier.
DispatcherAction
class adds
support for a "selected" (think ButtonModel) property to the normal
Action/AbstractAction .SwingConnectionManager
class
provides a different (smarter ;-)) call back handling compared with
the typical Swing addXYZListener approach.SwingDecorator
can be used as
a decorator of Swing widgets, esp. useful for I18N.
SwingMapping
can be used as to
access widgets by a hierarchical name, and makes get-Methods
unnecessary.
UserProperties
class can be used to
load and save user properties.
Copyright © 2017 Jürgen Zeller (privat). All rights reserved.