out.println(prefix + prefix + api.getName());
}
out.println();
final PrintWriter pw = new PrintWriter(out);
try {
final DeviceInfoAPI infoApi = dev.getAPI(DeviceInfoAPI.class);
if (infoApi != dev) {
infoApi.showInfo(pw);
}
} catch (ApiNotFoundException ex) {
// Ignore
}
if (dev instanceof DeviceInfoAPI) {