MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / checkPopGuard

Method checkPopGuard

CodenameOne/src/com/codename1/ui/Form.java:1584–1595  ·  view source on GitHub ↗
(com.codename1.router.PopReason reason)

Source from the content-addressed store, hash-verified

1582 ///
1583 /// #### Since 7.0
1584 public boolean checkPopGuard(com.codename1.router.PopReason reason) {
1585 com.codename1.router.PopGuard g = this.popGuard;
1586 if (g == null) {
1587 return true;
1588 }
1589 try {
1590 return g.canPop(this, reason);
1591 } catch (Throwable t) {
1592 Log.e(t);
1593 return true;
1594 }
1595 }
1596
1597 /// This method returns the Content pane instance
1598 ///

Callers 7

actionCommandImplMethod · 0.95
fireActionEventMethod · 0.95
noGuardAllowsPopMethod · 0.95
installedGuardCanDenyMethod · 0.95
guardSeesReasonMethod · 0.95
keyReleasedMethod · 0.80

Calls 2

eMethod · 0.95
canPopMethod · 0.65

Tested by 4

noGuardAllowsPopMethod · 0.76
installedGuardCanDenyMethod · 0.76
guardSeesReasonMethod · 0.76