Interface ChangeAware
-
- All Known Implementing Classes:
ColorSelectorCommand,ColorSelectorPopupMenuContentModel,ColorSelectorPopupMenuGroupModel,Command,CommandMenuContentModel,CommandPanelContentModel,CommandPanelPresentationModel,RibbonApplicationMenu,RibbonGalleryContentModel
public interface ChangeAware
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddChangeListener(javax.swing.event.ChangeListener l)Adds the specified change listener to track changes to the underlying source.voidremoveChangeListener(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)
-
-