Interface ChangeAware
-
- All Known Subinterfaces:
MutablePresentationModel
- All Known Implementing Classes:
BaseCommand
,BasicRibbonBandUI.BandCollapseCommand
,ColorSelectorCommand
,ColorSelectorPopupMenuContentModel
,ColorSelectorPopupMenuGroupModel
,Command
,CommandMenuContentModel
,CommandPanelContentModel
,CommandPanelPresentationModel
,CommandPopupMenuPanelPresentationModel
,RibbonApplicationMenu
,RibbonApplicationMenuCommand
,RibbonGalleryContentModel
,RibbonRadioButtonContentModel
public interface ChangeAware
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addChangeListener(javax.swing.event.ChangeListener l)
Adds the specified change listener to track changes to the underlying source.void
removeChangeListener(javax.swing.event.ChangeListener l)
Removes the specified change listener from tracking changes to the underlying source.
-
-
-
Method Detail
-
addChangeListener
void addChangeListener(javax.swing.event.ChangeListener l)
Adds the specified change listener to track changes to the underlying source.- Parameters:
l
- Change listener to add.- See Also:
removeChangeListener(ChangeListener)
-
removeChangeListener
void removeChangeListener(javax.swing.event.ChangeListener l)
Removes the specified change listener from tracking changes to the underlying source.- Parameters:
l
- Change listener to remove.- See Also:
removeChangeListener(ChangeListener)
-
-