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;
}