Search in sources :

Example 1 with Transition

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;
}
Also used : IEntity(org.whole.lang.model.IEntity) Transition(org.whole.lang.semantics.model.Transition) ArrayList(java.util.ArrayList)

Aggregations

ArrayList (java.util.ArrayList)1 IEntity (org.whole.lang.model.IEntity)1 Transition (org.whole.lang.semantics.model.Transition)1