(com.codename1.router.PopReason reason)
| 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 | /// |