Package org.eclipse.jface.text
Interface IEventConsumer
-
public interface IEventConsumer
Implementers can register with a text viewer and receiveVerifyEvent
s before the text viewer they are registered with. If the event consumer marks events as processed by turning theirdoit
field tofalse
the text viewer subsequently ignores them.Clients may implement this interface.
ITextViewerExtension2
allows clients to manage theVerifyListener
s of a text viewer. This makesIEventConsumer
obsolete.- See Also:
ITextViewer
,ITextViewerExtension2
,VerifyEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processEvent(VerifyEvent event)
Processes the given event and marks it as done if it should be ignored by subsequent receivers.
-
-
-
Method Detail
-
processEvent
void processEvent(VerifyEvent event)
Processes the given event and marks it as done if it should be ignored by subsequent receivers.- Parameters:
event
- the verify event which will be investigated
-
-