use of org.whole.lang.workflows.model.CreateEntity in project whole by wholeplatform.
the class CreateEntityPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
CreateEntity entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(5);
children.add(entity.getLabel());
children.add(entity.getModel());
children.add(entity.getRegistry());
children.add(entity.getEntityName());
children.add(entity.getArguments());
return children;
}
Aggregations