use of org.whole.lang.patterns.model.VariantSelectionPoint in project whole by wholeplatform.
the class VariantSelectionPointPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
VariantSelectionPoint entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getVariability());
list.add(entity.getVariants());
return list;
}
Aggregations