Package org.eclipse.compare
Interface IContentChangeNotifier
- All Known Implementing Classes:
BufferedContent
,BufferedResourceNode
,ContentChangeNotifier
,ResourceNode
public interface IContentChangeNotifier
Interface common to all objects that provide a means for registering
for content change notification.
Clients may implement this interface.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a content change listener to this notifier.void
Removes the given content changed listener from this notifier.
-
Method Details
-
addContentChangeListener
Adds a content change listener to this notifier. Has no effect if an identical listener is already registered.- Parameters:
listener
- a content changed listener
-
removeContentChangeListener
Removes the given content changed listener from this notifier. Has no effect if the listener is not registered.- Parameters:
listener
- a content changed listener
-