com.jgoodies.binding.tutorial.basics |
Contains small runnable examples that highlight different binding aspects.
Related Documentation
@see com.jgoodies.binding.tutorial
@see com.jgoodies.binding.tutorial.extras
@see com.jgoodies.binding.tutorial.manager
|
Java Source File Name | Type | Comment |
CommitStylesExample.java | Class | Demonstrates three different styles when to commit changes:
on key typed, on focus lost, on OK/Apply pressed.
Therefore we bind 3 JTextFields to 3 String typed ValueModels
that honor the commit style. |
ComponentsExample.java | Class | Demonstrates how to bind different value types to Swing components. |
ComponentValueModelExample.java | Class | Demonstrates how to modify the enabled/editable/visible state
of a Swing component in a Presentation Model using the new
ComponentValueModel that has been introduced in the Binding 1.1. |
EditorBoundExample.java | Class | Builds an editor with components bound to the domain object properties
using adapting ValueModels created by a PresentationModel. |
EditorBufferedExample.java | Class | Builds an editor with components bound to the domain object properties
using buffered adapting ValueModels created by a PresentationModel. |
EditorCopyingExample.java | Class | Builds an editor that copies data from the domain back and forth. |
MasterDetailsBoundExample.java | Class | Demonstrates a "hand-made" way how to connect a master list with a bound
details view. |
MasterDetailsCopyingExample.java | Class | Demonstrates how to connect a master list with a copying details view.
It builds a JList of Albums with an attached Album details panel
that presents the current Album selection. |
MasterDetailsDelayedReadExample.java | Class | Demonstrates an elegant means how to defer updates of a details view
after selecting an element in a master list. |
MasterDetailsSelectionInListExample.java | Class | Demonstrates an elegant way how to connect a master list with a bound
details view. |