Creates a new instance of Accounts
(String path, int direction, boolean fromResource)
| 74 | * Creates a new instance of Accounts |
| 75 | */ |
| 76 | public Accounts(String path, int direction, boolean fromResource) { |
| 77 | accountList = null; |
| 78 | accountList = new Vector(); |
| 79 | this.file = path; |
| 80 | |
| 81 | if (direction == 0) { |
| 82 | importData(fromResource); |
| 83 | } else { |
| 84 | exportData(); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | public final void importData(boolean fromResource) { |
| 89 | String accounts = ""; |
nothing calls this directly
no test coverage detected