Uses of Class
org.pepstock.charba.client.items.PluginEventArgument
-
Packages that use PluginEventArgument Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.plugins.hooks Contains all hooks interfaces used bySmartPluginin order to activate a custom plugin. -
-
Uses of PluginEventArgument in org.pepstock.charba.client
Methods in org.pepstock.charba.client with parameters of type PluginEventArgument Modifier and Type Method Description default voidPlugin. onAfterEvent(IsChart chart, PluginEventArgument argument)Called after the 'event' has been consumed.
Note that this hook will not be called if the 'event' has been previously discarded.default booleanPlugin. onBeforeEvent(IsChart chart, PluginEventArgument argument)Called before processing the specified 'event'.
If any plugin returnsfalse, the event will be discarded. -
Uses of PluginEventArgument in org.pepstock.charba.client.plugins.hooks
Methods in org.pepstock.charba.client.plugins.hooks with parameters of type PluginEventArgument Modifier and Type Method Description voidAfterEventHook. onAfterEvent(IsChart chart, PluginEventArgument argument)Called after the 'event' has been consumed.
Note that this hook will not be called if the 'event' has been previously discarded.booleanBeforeEventHook. onBeforeEvent(IsChart chart, PluginEventArgument argument)Called before processing the specified 'event'.
If any plugin returnsfalse, the event will be discarded.
-