com.silvermindsoftware.hitch.swing |
|
Java Source File Name | Type | Comment |
EnhancedSpinnerListFormatter.java | Class | ListFormatter provides completion while text is being input
into the JFormattedTextField.Completion is only done if the
user is inserting text at the end of the document.Completion
is done by way of the SpinnerListModel method findNextMatch.
This is largely a copy of the SpinnerListFormatter found in
JDK 1.5 sources. |
EnhancedSpinnerListModel.java | Class | This is a pretty much a direct copy of the SpinnerListModel from JDK 1.5 sources.
It was copied out in order to expose methods that needed to be publicly available
in order to allow for completion to work properly with a list of complex objects
that present their human readable value from a toString(). |