// iterate over the table names is alphabetical order
for (String tableName: new TreeSet<String>(colInfo.keySet())) {
Map<String, ColumnCheckInfo> colMap = colInfo.get(tableName);
ModelEntity newEntity = new ModelEntity(tableName, colMap, modelFieldTypeReader, isCaseSensitive);
root.appendChild(newEntity.toXmlElement(document, "org.ofbiz.ext." + packageName));
}
// print the messages to the console
for (String message: messages) {
Debug.logInfo(message, module);