| com.jgoodies.looks.windows.WindowsSpinnerUI
WindowsSpinnerUI | final public class WindowsSpinnerUI extends com.sun.java.swing.plaf.windows.WindowsSpinnerUI (Code) | | The JGoodies Windows L&F implementation of SpinnerUI .
Configures the default editor to adjust font baselines and component
bounds, by setting an empty border with the default text insets.
author: Karsten Lentzsch version: $Revision: 1.4 $ |
createEditor | protected JComponent createEditor()(Code) | | This method is called by installUI to get the editor component of the
JSpinner . By default it just returns JSpinner.getEditor() .
Subclasses can override createEditor to return a
component that contains the spinner's editor or null, if they're going
to handle adding the editor to the JSpinner in an installUI
override.
Typically this method would be overridden to wrap the editor with a
container with a custom border, since one can't assume that the editors
border can be set directly.
The replaceEditor method is called when the spinners
editor is changed with JSpinner.setEditor . If you've
overriden this method, then you'll probably want to override replaceEditor
as well.
the JSpinners editor JComponent, spinner.getEditor() by default See Also: WindowsSpinnerUI.installUI See Also: WindowsSpinnerUI.replaceEditor See Also: JSpinner.getEditor |
createNextButton | protected Component createNextButton()(Code) | | Create a component that will replace the spinner models value with the
object returned by spinner.getNextValue . By default the
nextButton is a JButton who's ActionListener
updates it's JSpinner ancestors model. If a nextButton
isn't needed (in a subclass) then override this method to return null.
a component that will replace the spinners model with the nextvalue in the sequence, or null See Also: WindowsSpinnerUI.installUI See Also: WindowsSpinnerUI.createPreviousButton |
createPreviousButton | protected Component createPreviousButton()(Code) | | Create a component that will replace the spinner models value with the
object returned by spinner.getPreviousValue . By default
the previousButton is a JButton who's ActionListener
updates it's JSpinner ancestors model. If a
previousButton isn't needed (in a subclass) then override this method to
return null.
a component that will replace the spinners model with the nextvalue in the sequence, or null See Also: WindowsSpinnerUI.installUI See Also: WindowsSpinnerUI.createNextButton |
replaceEditor | protected void replaceEditor(JComponent oldEditor, JComponent newEditor)(Code) | | Called by the PropertyChangeListener when the JSpinner
editor property changes. It's the responsibility of this method to
remove the old editor and add the new one. By default this operation is
just:
spinner.remove(oldEditor); spinner.add(newEditor, "Editor");
The implementation of replaceEditor should be coordinated
with the createEditor method.
See Also: WindowsSpinnerUI.createEditor See Also: WindowsSpinnerUI.createPropertyChangeListener |
|
|