use of eu.esdihumboldt.hale.common.align.model.impl.ChildEntityDefinition in project hale by halestudio.
the class EntityVisitor method accept.
/**
* Apply the visitor on a child entity definition.
*
* @param ced the child entity definition
*/
public void accept(ChildEntityDefinition ced) {
if (visit(ced)) {
for (ChildDefinition<?> child : ced.getDefinition().asGroup().getDeclaredChildren()) {
EntityDefinition ed = AlignmentUtil.getChild(ced, child.getName());
accept(ed);
}
}
}
Aggregations