-
- All Superinterfaces:
-
EventListener
- 所有已知实现类:
-
BasicButtonListener
,BasicColorChooserUI.PropertyHandler
,BasicComboBoxUI.PropertyChangeHandler
,BasicComboPopup.PropertyChangeHandler
,BasicDirectoryModel
,BasicInternalFrameTitlePane.PropertyChangeHandler
,BasicInternalFrameUI.InternalFramePropertyChangeListener
,BasicLabelUI
,BasicListUI.PropertyChangeHandler
,BasicOptionPaneUI.PropertyChangeHandler
,BasicRootPaneUI
,BasicScrollBarUI.PropertyChangeHandler
,BasicScrollPaneUI.PropertyChangeHandler
,BasicSliderUI.PropertyChangeHandler
,BasicSplitPaneDivider
,BasicSplitPaneUI.PropertyHandler
,BasicTabbedPaneUI.PropertyChangeHandler
,BasicToolBarUI.PropertyListener
,BasicTreeUI.PropertyChangeHandler
,BasicTreeUI.SelectionModelPropertyChangeHandler
,BeanContextServicesSupport
,BeanContextSupport
,DefaultTableColumnModel
,JLayer
,JList.AccessibleJList
,JPopupMenu.AccessibleJPopupMenu
,JScrollPane.AccessibleJScrollPane
,JSpinner.DateEditor
,JSpinner.DefaultEditor
,JSpinner.ListEditor
,JSpinner.NumberEditor
,JTable.AccessibleJTable
,MetalComboBoxUI.MetalPropertyChangeListener
,MetalFileChooserUI.FilterComboBoxModel
,MetalLabelUI
,MetalRootPaneUI
,MetalSliderUI.MetalPropertyListener
,MetalToolBarUI.MetalRolloverListener
,ProgressMonitor.AccessibleProgressMonitor
,PropertyChangeListenerProxy
,SynthButtonUI
,SynthCheckBoxMenuItemUI
,SynthCheckBoxUI
,SynthColorChooserUI
,SynthComboBoxUI
,SynthDesktopIconUI
,SynthDesktopPaneUI
,SynthInternalFrameUI
,SynthLabelUI
,SynthListUI
,SynthMenuBarUI
,SynthMenuItemUI
,SynthMenuUI
,SynthOptionPaneUI
,SynthPanelUI
,SynthPopupMenuUI
,SynthProgressBarUI
,SynthRadioButtonMenuItemUI
,SynthRadioButtonUI
,SynthRootPaneUI
,SynthScrollBarUI
,SynthScrollPaneUI
,SynthSeparatorUI
SynthSeparatorUI
,SynthSliderUI
,SynthSpinnerUI
,SynthSplitPaneUI
,SynthTabbedPaneUI
,SynthTableHeaderUI
,SynthTableUI
,SynthToggleButtonUI
,SynthToolBarUI
,SynthToolTipUI
,SynthTreeUI
,SynthViewportUI
public interface PropertyChangeListener extends EventListener
每当bean更改“bound”属性时,都会触发“PropertyChange”事件。 您可以向Source bean注册PropertyChangeListener,以便获得任何绑定属性更新的通知。- 从以下版本开始:
- 1.1
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 void
propertyChange(PropertyChangeEvent evt)
更改绑定属性时将调用此方法。
-
-
-
方法详细信息
-
propertyChange
void propertyChange(PropertyChangeEvent evt)
更改绑定属性时将调用此方法。- 参数
-
evt
- A PropertyChangeEvent object describing the event source and the property that has changed.
-
-