Package com.itextpdf.commons.actions
Class EventManager
java.lang.Object
com.itextpdf.commons.actions.EventManager
Entry point for event handling mechanism. Class is a singleton, see
getInstance()
.
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
Deliberately turns off the warning message about AGPL usage.static EventManager
Allows an access to the instance of EventManager.boolean
isRegistered
(IEventHandler handler) Check if the handler was registered for event handling process.void
Handles the event.void
register
(IEventHandler handler) Add newIEventHandler
to the event handling process.boolean
unregister
(IEventHandler handler) Removes handler from event handling process.
-
Method Details
-
getInstance
Allows an access to the instance of EventManager.- Returns:
- the instance of the class
-
acknowledgeAgplUsageDisableWarningMessage
public static void acknowledgeAgplUsageDisableWarningMessage()Deliberately turns off the warning message about AGPL usage.Important note. Calling of this method means that the terms of AGPL license are met.
-
onEvent
Handles the event.- Parameters:
-
event
- to handle
-
register
Add newIEventHandler
to the event handling process.- Parameters:
-
handler
- is a handler to add
-
isRegistered
Check if the handler was registered for event handling process.- Parameters:
-
handler
- is a handler to check - Returns:
- true if handler has been already registered and false otherwise
-
unregister
Removes handler from event handling process.- Parameters:
-
handler
- is a handle to remove - Returns:
- true if the handler had been registered previously and was removed. False if the handler was not found among registered handlers
-