use of org.whole.lang.workflows.model.LoadArtifacts in project whole by wholeplatform.
the class LoadArtifactsPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
LoadArtifacts entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(7);
children.add(entity.getLabel());
children.add(entity.getModel());
children.add(entity.getRootResourceKind());
children.add(entity.getRootResource());
children.add(entity.getTraversalStrategy());
children.add(entity.getSynchronizeStrategy());
children.add(entity.getDefaultPersistence());
return children;
}
Aggregations