Creates a new instance of AccountPicker
(boolean enableQuit)
| 56 | |
| 57 | /** Creates a new instance of AccountPicker */ |
| 58 | public AccountSelect(boolean enableQuit) { |
| 59 | super(SR.MS_ACCOUNTS, false); |
| 60 | this.enableQuit = enableQuit; |
| 61 | |
| 62 | enableListWrapping(true); |
| 63 | cf = Config.getInstance(); |
| 64 | |
| 65 | if (enableQuit) { |
| 66 | canBack = false; |
| 67 | } |
| 68 | |
| 69 | loadAccounts(); |
| 70 | } |
| 71 | |
| 72 | public final void loadAccounts() { |
| 73 | Account a; |
nothing calls this directly
no test coverage detected