Search in sources :

Example 1 with CreateEntity

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;
}
Also used : CreateEntity(org.whole.lang.workflows.model.CreateEntity) IEntity(org.whole.lang.model.IEntity) ArrayList(java.util.ArrayList)

Aggregations

ArrayList (java.util.ArrayList)1 IEntity (org.whole.lang.model.IEntity)1 CreateEntity (org.whole.lang.workflows.model.CreateEntity)1