Interface ControllerRegistrationHandler
- 
 public interface ControllerRegistrationHandlerThis interface enables the capability to be before and after a controller will be registered.- Author:
- Andrea "Stock" Stocchero
 
- 
- 
Method SummaryAll Methods Instance Methods Default Methods Modifier and Type Method Description default voidonAfterRegister(ControllerType controllerType, boolean registered)Invoked after the controller is registered to CHART.JS.default voidonBeforeRegister(ControllerType controllerType)Invoked before the controller will be register to CHART.JS.
 
- 
- 
- 
Method Detail- 
onBeforeRegisterdefault void onBeforeRegister(ControllerType controllerType) Invoked before the controller will be register to CHART.JS.- Parameters:
- controllerType- the controller type which is registering
 
 - 
onAfterRegisterdefault void onAfterRegister(ControllerType controllerType, boolean registered) Invoked after the controller is registered to CHART.JS.- Parameters:
- controllerType- the controller type which is registering
- registered-- trueif the controller has been registered otherwise- false
 
 
- 
 
-