public void output(String title) {
try {
IDomainModel domainModel = getDomainModel();
if (domainModel != null) {
ModelMeta modelMeta = domainModel.getModelMeta();
modelMeta.output(this, title);
}
} catch (Exception e) {
log.error("Error in Entities.output: " + e.getMessage());
}
}