(String label, DBList fieldList)
| 166 | } |
| 167 | |
| 168 | private void examineItem(String label, DBList fieldList) |
| 169 | throws DBException, IOException |
| 170 | { |
| 171 | StringBuilder description = new StringBuilder(256); |
| 172 | |
| 173 | String string = fieldList.getString("DescIdentified"); |
| 174 | if (string.length() == 0) { |
| 175 | string = fieldList.getString("Description"); |
| 176 | } |
| 177 | if (string.length() != 0) { |
| 178 | description.append(string); |
| 179 | } |
| 180 | |
| 181 | ExamineDialog.showDialog(Main.mainWindow, label, description.toString()); |
| 182 | } |
| 183 | |
| 184 | private void removeSelectedItem() |
| 185 | throws DBException |
no test coverage detected