(DBList list)
| 47 | } |
| 48 | |
| 49 | public void setFields(DBList list) |
| 50 | throws DBException |
| 51 | { |
| 52 | for (int i = 0; i < databaseNames.length; i++) |
| 53 | for (int j = 0; j < 3; j++) |
| 54 | if (this.statFields[i][j] != null) |
| 55 | this.statFields[i][j].setValue(list.getInteger(databaseNames[i][j])); |
| 56 | } |
| 57 | |
| 58 | public void getFields(DBList list) |
| 59 | throws DBException |
nothing calls this directly
no test coverage detected