Search in sources :

Example 1 with PartDeclaration

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

the class PartDeclarationPart method getModelSpecificChildren.

protected List<IEntity> getModelSpecificChildren() {
    PartDeclaration entity = getModelEntity();
    List<IEntity> list = new ArrayList<IEntity>(4);
    list.add(entity.getPartName());
    list.add(entity.getEntityName());
    list.add(entity.getFigureName());
    list.add(entity.getEntityFeatures());
    return list;
}
Also used : PartDeclaration(org.whole.lang.editors.model.PartDeclaration) IEntity(org.whole.lang.model.IEntity) ArrayList(java.util.ArrayList)

Aggregations

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