// Never set the body if an abstract method
if (!Modifier.isAbstract(method.getModifier())
&& !PhysicalTypeCategory.INTERFACE
.equals(compilationUnitServices
.getPhysicalTypeCategory())) {
d.setBody(new BlockStmt());
}
}
else {
// There is a body.
// We need to make a fake method that we can have JavaParser parse.