Package org.eclipse.compare
Interface IPropertyChangeNotifier
- All Known Implementing Classes:
- CompareEditorInput,- ContentMergeViewer,- HistoryPageCompareEditorInput,- ImageMergeViewer,- PageCompareEditorInput,- ParticipantPageCompareEditorInput,- SaveableCompareEditorInput,- SyncInfoCompareInput,- TextMergeViewer
public interface IPropertyChangeNotifier
Interface common to all objects that provide a means for registering
 for property change notification.
 
Clients may implement this interface.
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionvoidAdds a listener for property changes to this notifier.voidRemoves the given content change listener from this notifier.
- 
Method Details- 
addPropertyChangeListenerAdds a listener for property changes to this notifier. Has no effect if an identical listener is already registered.- Parameters:
- listener- a property change listener
 
- 
removePropertyChangeListenerRemoves the given content change listener from this notifier. Has no effect if the identical listener is not registered.- Parameters:
- listener- a property change listener
 
 
-