|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.Component | +--java.awt.Container | +--javax.swing.JComponent | +--javax.swing.JPanel | +--javax.swing.JSpinner.DefaultEditor | +--javax.swing.JSpinner.NumberEditor
An editor for a JSpinner
whose model is a
SpinnerNumberModel
. The value of the editor is
displayed with a JFormattedTextField
whose format
is defined by a NumberFormatter
instance whose
minimum
and maximum
properties
are mapped to the SpinnerNumberModel
.
Nested Class Summary |
Nested classes inherited from class javax.swing.JPanel |
JPanel.AccessibleJPanel |
Nested classes inherited from class javax.swing.JComponent |
JComponent.AccessibleJComponent |
Nested classes inherited from class java.awt.Container |
Container.AccessibleAWTContainer |
Nested classes inherited from class java.awt.Component |
Component.AccessibleAWTComponent, Component.BltBufferStrategy, Component.FlipBufferStrategy |
Field Summary |
Fields inherited from class javax.swing.JComponent |
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
Fields inherited from class java.awt.Component |
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface java.awt.image.ImageObserver |
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
JSpinner.NumberEditor(JSpinner spinner)
Construct a JSpinner editor that supports displaying
and editing the value of a SpinnerNumberModel
with a JFormattedTextField . |
|
JSpinner.NumberEditor(JSpinner spinner,
String decimalFormatPattern)
Construct a JSpinner editor that supports displaying
and editing the value of a SpinnerNumberModel
with a JFormattedTextField . |
Method Summary | |
DecimalFormat |
getFormat()
Returns the java.text.NumberFormat object the
JFormattedTextField uses to parse and format
numbers. |
SpinnerNumberModel |
getModel()
Return our spinner ancestor's SpinnerNumberModel . |
Methods inherited from class javax.swing.JSpinner.DefaultEditor |
addLayoutComponent, commitEdit, dismiss, getSpinner, getTextField, layoutContainer, minimumLayoutSize, preferredLayoutSize, propertyChange, removeLayoutComponent, stateChanged |
Methods inherited from class javax.swing.JPanel |
getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public JSpinner.NumberEditor(JSpinner spinner)
JSpinner
editor that supports displaying
and editing the value of a SpinnerNumberModel
with a JFormattedTextField
. This
NumberEditor
becomes both a ChangeListener
on the spinner and a PropertyChangeListener
on the new JFormattedTextField
.
spinner
- the spinner whose model this
editor will monitor
IllegalArgumentException
- if the spinners model is not
an instance of SpinnerNumberModel
getModel()
,
getFormat()
,
SpinnerNumberModel
public JSpinner.NumberEditor(JSpinner spinner, String decimalFormatPattern)
JSpinner
editor that supports displaying
and editing the value of a SpinnerNumberModel
with a JFormattedTextField
. This
NumberEditor
becomes both a ChangeListener
on the spinner and a PropertyChangeListener
on the new JFormattedTextField
.
spinner
- the spinner whose model this
editor will monitordecimalFormatPattern
- the initial pattern for the
DecimalFormat
object that's used to display
and parse the value of the text field.
IllegalArgumentException
- if the spinners model is not
an instance of SpinnerNumberModel
or if
decimalFormatPattern
is not a legal
argument to DecimalFormat
JSpinner.DefaultEditor.getTextField()
,
SpinnerNumberModel
,
DecimalFormat
Method Detail |
public DecimalFormat getFormat()
java.text.NumberFormat
object the
JFormattedTextField
uses to parse and format
numbers.
getTextField().getFormatter().getFormat()
.JSpinner.DefaultEditor.getTextField()
,
DecimalFormat
public SpinnerNumberModel getModel()
SpinnerNumberModel
.
getSpinner().getModel()
JSpinner.DefaultEditor.getSpinner()
,
JSpinner.DefaultEditor.getTextField()
|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.