output.setDocument(d);
} catch (JAXBException e) {
final String name = file.toString();
final String msg = e.getMessage();
final Throwable cause = e;
output.setConversionError(new ConversionError(name, msg, cause));
return output;
} catch (IOException e) {
final String name = file.toString();
final String msg = e.getMessage();
final Throwable cause = e;
output.setConversionError(new ConversionError(name, msg, cause));
return output;
}
List<AnnotationDefinition> definitions = d.getDefinitions();
if (definitions == null) {