MCPcopy Create free account
hub / github.com/boazy/TWEditorEnhanced / examineItem

Method examineItem

src/main/java/EquipPanel.java:168–182  ·  view source on GitHub ↗
(String label, DBList fieldList)

Source from the content-addressed store, hash-verified

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

Callers 2

examineCurrentItemMethod · 0.95
examineAvailableItemMethod · 0.95

Calls 3

showDialogMethod · 0.95
getStringMethod · 0.45
toStringMethod · 0.45

Tested by

no test coverage detected