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