use of org.whole.lang.semantics.model.Transition in project whole by wholeplatform.
the class TransitionPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Transition entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getSourceConfiguration());
list.add(entity.getTargetConfiguration());
return list;
}
Aggregations