// referenced parameter
if(oReferencedTCGParameter != null)
{
// try to find matching eventparameterinstances and reuse them
// TODO: check: klappt das immer?
EventParameterInstance oEPInstance =
oTransitionInstance.getInstanceForTCGParameter(oReferencedTCGParameter);
// if not found: create a new one
if(oEPInstance == null) {
oEPInstance = new EventParameterInstance(oReferencedTCGParameter, oTransitionInstance);
oTransitionInstance.getParameterInstances().add(oEPInstance);
}
// remove the atom from the list of searched elements
colRemovedElements.add(oAtom);