Search in sources :

Example 1 with Editor

use of org.whole.lang.editors.model.Editor in project whole by wholeplatform.

the class EditorPart method getModelSpecificChildren.

protected List<IEntity> getModelSpecificChildren() {
    Editor entity = getModelEntity();
    List<IEntity> list = new ArrayList<IEntity>(5);
    list.add(entity.getEditorName());
    list.add(entity.getSuperEditorName());
    list.add(entity.getModelComponent());
    list.add(entity.getViewComponent());
    list.add(entity.getControllerComponent());
    return list;
}
Also used : IEntity(org.whole.lang.model.IEntity) ArrayList(java.util.ArrayList) Editor(org.whole.lang.editors.model.Editor)

Aggregations

ArrayList (java.util.ArrayList)1 Editor (org.whole.lang.editors.model.Editor)1 IEntity (org.whole.lang.model.IEntity)1