()
| 219 | } |
| 220 | |
| 221 | private void getAccounts() { |
| 222 | Account a; |
| 223 | int index = 0; |
| 224 | do { |
| 225 | a = AccountStorage.createFromStorage(index); |
| 226 | if (a != null) { |
| 227 | accountList.addElement(a); |
| 228 | index++; |
| 229 | } |
| 230 | } while (a != null); |
| 231 | } |
| 232 | |
| 233 | public int getItemCount() { |
| 234 | return accountList.size(); |
no test coverage detected