Search in sources :

Example 1 with Folder

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

Aggregations

ArrayList (java.util.ArrayList)1 IEntity (org.whole.lang.model.IEntity)1 Folder (org.whole.lang.reusables.model.Folder)1