Table table = new Table(entity.getSimpleName().toString(), entity.toString());
Map<String, AtomicInteger> countedToManyAssociations = new HashMap<String, AtomicInteger>();
for (Element child : entity.getEnclosedElements()) {
if (child.accept(new EmptyContructorVisitor(), null) != null) {
noArgsConstructor = true;
}
VariableElement column = child.accept(new ColumnElementResolvingTypeVisitor(), null);
if (column != null) {