use of org.whole.lang.reusables.model.IReusablesEntity in project whole by wholeplatform.
the class ReusablesArtifactsGeneratorVisitor method visit.
public void visit(IReusablesEntity entity) {
IReusablesEntity entityClone = EntityUtils.clone(entity);
IBindingScope resultsScope = InterpreterOperation.interpret(entityClone);
for (IEntity result : resultsScope.getResultIterator()) {
IEntity adaptee = result.wGetAdaptee(false);
stagedVisit(adaptee);
}
}
Aggregations