-
public interface BranchViewHandler.IBranchViewEventsInterface for calling back methods on Branch view lifecycle events
-
-
Method Summary
Modifier and Type Method Description abstract voidonBranchViewVisible(String action, String branchViewID)Called when a Branch view shown abstract voidonBranchViewAccepted(String action, String branchViewID)Called when user click the positive button on Branch view abstract voidonBranchViewCancelled(String action, String branchViewID)Called when user click the negative button app Branch view abstract voidonBranchViewError(int errorCode, String errorMsg, String action)Called when there is an error on creating or showing Branch view -
-
Method Detail
-
onBranchViewVisible
abstract void onBranchViewVisible(String action, String branchViewID)
Called when a Branch view shown
- Parameters:
action- action name associated with the Branch view itembranchViewID- ID for the Branch view displayed
-
onBranchViewAccepted
abstract void onBranchViewAccepted(String action, String branchViewID)
Called when user click the positive button on Branch view
- Parameters:
action- action name associated with the App Branch itembranchViewID- ID for the Branch view accepted
-
onBranchViewCancelled
abstract void onBranchViewCancelled(String action, String branchViewID)
Called when user click the negative button app Branch view
- Parameters:
action- action name associated with the Branch viewbranchViewID- ID for the Branch view cancelled
-
onBranchViewError
abstract void onBranchViewError(int errorCode, String errorMsg, String action)
Called when there is an error on creating or showing Branch view
-
-
-
-