Package com.itextpdf.kernel.events
Interface IEventHandler
-
public interface IEventHandler
Interface for handling events. EventHandlers are added to theEventDispatcher
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleEvent(Event event)
Hook for handling events.
-
-
-
Method Detail
-
handleEvent
void handleEvent(Event event)
Hook for handling events. Implementations can access the PdfDocument instance associated to the specified Event or, if available, the PdfPage instance.- Parameters:
event
- the Event that needs to be processed
-
-