- java.lang.Object
-
- javax.swing.plaf.ComponentUI
-
- javax.swing.plaf.SpinnerUI
-
- javax.swing.plaf.basic.BasicSpinnerUI
-
- 已知直接子类:
-
SynthSpinnerUI
public class BasicSpinnerUI extends SpinnerUI
默认的Spinner UI委托。- 从以下版本开始:
- 1.4
-
-
构造方法摘要
构造方法 构造器 描述 BasicSpinnerUI()
-
方法摘要
所有方法 静态方法 实例方法 具体的方法 变量和类型 方法 描述 protected JComponent
createEditor()
installUI调用此方法以获取JSpinner
的编辑器组件。protected LayoutManager
createLayout()
创建LayoutManager
管理的editor
,nextButton
和previousButton
的JSpinner的儿童。protected Component
createNextButton()
创建一个增量按钮,即用微调器值替换spinner.getNextValue
返回的对象的spinner.getNextValue
。protected Component
createPreviousButton()
创建一个减量按钮,即用spinner.getPreviousValue
返回的对象替换微调器值的spinner.getPreviousValue
。protected PropertyChangeListener
createPropertyChangeListener()
创建一个可以添加到JSpinner本身的PropertyChangeListener
。static ComponentUI
createUI(JComponent c)
返回BasicSpinnerUI的新实例。int
getBaseline(JComponent c, int width, int height)
返回基线。Component.BaselineResizeBehavior
getBaselineResizeBehavior(JComponent c)
返回一个枚举,指示组件的基线如何随大小的变化而变化。protected void
installDefaults()
初始化JSpinner
border
,foreground
,和background
基于从默认值表中对应的“微调。*”的属性,属性。protected void
installKeyboardActions()
将键盘操作安装到JSpinner上。protected void
installListeners()
使用共享对象初始化PropertyChangeListener
,该对象将有趣的PropertyChangeEvents委托给受保护的方法。protected void
installNextButtonListeners(Component c)
在下一个按钮c
上安装必要的侦听c
,以响应用户手势更新JSpinner
。protected void
installPreviousButtonListeners(Component c)
在上一个按钮c
上安装必要的侦听c
,以响应用户手势更新JSpinner
。void
installUI(JComponent c)
电话installDefaults
,installListeners
,然后将返回的组件createNextButton
,createPreviousButton
和createEditor
。protected void
replaceEditor(JComponent oldEditor, JComponent newEditor)
由被叫PropertyChangeListener
当JSpinner
编辑属性更改。protected void
uninstallDefaults()
将JSpinner's
布局管理器设置为null。protected void
uninstallListeners()
删除PropertyChangeListener
添加的PropertyChangeListener。void
uninstallUI(JComponent c)
电话uninstallDefaults
,uninstallListeners
,然后删除所有的纺纱孩子。-
声明方法的类 javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getMaximumSize, getMinimumSize, getPreferredSize, paint, update
-
-
-
-
字段详细信息
-
spinner
protected JSpinner spinner
我们是UI代表的微调器。 通过初始化installUI
方法,并通过重新设置为空uninstallUI
。
-
-
方法详细信息
-
createUI
public static ComponentUI createUI(JComponent c)
返回BasicSpinnerUI的新实例。 每个JSpinner分配一个SpinnerListUI委托。- 参数
-
c
- JSpinner(未使用) - 结果
- 一个新的BasicSpinnerUI对象
- 另请参见:
-
ComponentUI.createUI(javax.swing.JComponent)
-
installUI
public void installUI(JComponent c)
电话installDefaults
,installListeners
,然后将返回的组件createNextButton
,createPreviousButton
和createEditor
。- 重写:
-
installUI
类ComponentUI
- 参数
-
c
- JSpinner - 另请参见:
-
installDefaults()
,installListeners()
,createNextButton()
,createPreviousButton()
,createEditor()
-
uninstallUI
public void uninstallUI(JComponent c)
电话uninstallDefaults
,uninstallListeners
,然后删除所有的纺纱孩子。- 重写:
-
uninstallUI
类ComponentUI
- 参数
-
c
- JSpinner(未使用) - 另请参见:
-
ComponentUI.installUI(javax.swing.JComponent)
,JComponent.updateUI()
-
installListeners
protected void installListeners()
使用共享对象初始化PropertyChangeListener
,该对象将有趣的PropertyChangeEvents委托给受保护的方法。该方法由
installUI
。
-
uninstallListeners
protected void uninstallListeners()
删除PropertyChangeListener
添加的PropertyChangeListener。该方法由
uninstallUI
。- 另请参见:
-
installListeners()
-
installDefaults
protected void installDefaults()
初始化JSpinner
border
,foreground
,和background
基于从默认值表中对应的“微调。*”的属性,属性。JSpinners
布局设置为createLayout
返回的值。 该方法由installUI
。
-
uninstallDefaults
protected void uninstallDefaults()
将JSpinner's
布局管理器设置为null。 该方法由uninstallUI
。
-
installNextButtonListeners
protected void installNextButtonListeners(Component c)
在下一个按钮c
上安装必要的侦听c
,以响应用户手势更新JSpinner
。- 参数
-
c
- 用于安装侦听器的组件 - 异常
-
NullPointerException
- 如果c
为空。 - 从以下版本开始:
- 1.5
- 另请参见:
-
createNextButton()
-
installPreviousButtonListeners
protected void installPreviousButtonListeners(Component c)
在上一个按钮c
上安装必要的侦听c
,以响应用户手势更新JSpinner
。- 参数
-
c
- 用于安装侦听器的组件。 - 异常
-
NullPointerException
- 如果c
为空。 - 从以下版本开始:
- 1.5
- 另请参见:
-
createPreviousButton()
-
createLayout
protected LayoutManager createLayout()
创建LayoutManager
管理的editor
,nextButton
和previousButton
的JSpinner的儿童。 必须为这三个子项添加一个用于标识其角色的约束:“编辑器”,“下一个”和“上一个”。 默认布局管理器可以处理任何这些子项的缺失。- 结果
- 编辑器的LayoutManager,下一个按钮和上一个按钮。
- 另请参见:
-
createNextButton()
,createPreviousButton()
,createEditor()
-
createPropertyChangeListener
protected PropertyChangeListener createPropertyChangeListener()
创建一个可以添加到JSpinner本身的PropertyChangeListener
。 通常,当“editor”属性发生更改时,此侦听器将调用replaceEditor,因为将编辑器添加到JSpinner(并删除旧编辑器)是SpinnerUI's
责任。 该方法由installListeners
。- 结果
- JSpinner本身的PropertyChangeListener
- 另请参见:
-
installListeners()
-
createPreviousButton
protected Component createPreviousButton()
创建一个减量按钮,即用spinner.getPreviousValue
返回的对象替换微调器值的spinner.getPreviousValue
。 默认情况下,previousButton
是JButton
。 如果不需要减量按钮,则此方法应返回null
。- 结果
-
一个组件,它将使用序列中的先前值替换微调器的值,或
null
- 另请参见:
-
installUI(javax.swing.JComponent)
,createNextButton()
,installPreviousButtonListeners(java.awt.Component)
-
createNextButton
protected Component createNextButton()
创建一个增量按钮,即用spinner.getNextValue
返回的对象替换微调器值的spinner.getNextValue
。 默认情况下,nextButton
是JButton
。 如果不需要增量按钮,则此方法应返回null
。- 结果
-
一个组件,它将使用序列中的下一个值替换微调器的值,或
null
- 另请参见:
-
installUI(javax.swing.JComponent)
,createPreviousButton()
,installNextButtonListeners(java.awt.Component)
-
createEditor
protected JComponent createEditor()
installUI调用此方法以获取JSpinner
的编辑器组件。 默认情况下,它只返回JSpinner.getEditor()
。 子类可以重写createEditor
返回包含微调的编辑器或空,如果他们要处理添加编辑器的组件JSpinner
在installUI
覆盖。通常会覆盖此方法以使用具有自定义边框的容器包装编辑器,因为不能假设可以直接设置编辑器边框。
该
replaceEditor
当纺纱编辑器与改变方法被调用JSpinner.setEditor
。 如果你已经覆盖了这个方法,那么你可能也想要覆盖replaceEditor
。- 结果
- JSpinners编辑器JComponent,spinner.getEditor()默认情况下
- 另请参见:
-
installUI(javax.swing.JComponent)
,replaceEditor(javax.swing.JComponent, javax.swing.JComponent)
,JSpinner.getEditor()
-
replaceEditor
protected void replaceEditor(JComponent oldEditor, JComponent newEditor)
由被叫PropertyChangeListener
当JSpinner
编辑属性更改。 这种方法的责任是删除旧编辑器并添加新编辑器。 默认情况下,此操作只是:spinner.remove(oldEditor); spinner.add(newEditor, "Editor");
replaceEditor
的实施应与createEditor
方法协调。- 参数
-
oldEditor
- 编辑器的旧实例 -
newEditor
- 编辑器的新实例 - 另请参见:
-
createEditor()
,createPropertyChangeListener()
-
installKeyboardActions
protected void installKeyboardActions()
将键盘操作安装到JSpinner上。- 从以下版本开始:
- 1.5
-
getBaseline
public int getBaseline(JComponent c, int width, int height)
返回基线。- 重写:
-
getBaseline
类ComponentUI
- 参数
-
正在申请
c
-JComponent
基线 -
width
- 获取基线的宽度 -
height
- 获取基线的高度 - 结果
- 基线或值<0表示没有合理的基线
- 异常
-
NullPointerException
- 如果c
是null
-
IllegalArgumentException
- 如果宽度或高度<0 - 从以下版本开始:
- 1.6
- 另请参见:
-
JComponent.getBaseline(int, int)
-
getBaselineResizeBehavior
public Component.BaselineResizeBehavior getBaselineResizeBehavior(JComponent c)
返回一个枚举,指示组件的基线如何随大小的变化而变化。- 重写:
-
getBaselineResizeBehavior
类ComponentUI
- 参数
-
c
-JComponent
返回基线调整大小的行为 - 结果
- 一个枚举,指示基线随组件大小的变化而变化的方式
- 异常
-
NullPointerException
- 如果c
是null
- 从以下版本开始:
- 1.6
- 另请参见:
-
JComponent.getBaseline(int, int)
-
-