use of org.whole.lang.reusables.model.Folder in project whole by wholeplatform.
the class FolderPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Folder entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(3);
children.add(entity.getPath());
children.add(entity.getPersistence());
children.add(entity.getContent());
return children;
}