(DBList list)
| 56 | } |
| 57 | |
| 58 | public void getFields(DBList list) |
| 59 | throws DBException |
| 60 | { |
| 61 | for (int i = 0; i < databaseNames.length; i++) |
| 62 | for (int j = 0; j < 3; j++) |
| 63 | if (this.statFields[i][j] != null) |
| 64 | list.setInteger(databaseNames[i][j], this.statFields[i][j].getValue()); |
| 65 | } |
| 66 | } |
| 67 |
nothing calls this directly
no test coverage detected