use of org.eclipse.emf.ecore.util.BasicInternalEList in project statecharts by Yakindu.
the class StateImpl method getLocalReactions.
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated NOT
*/
public EList<Reaction> getLocalReactions() {
EList<Reaction> result = new BasicInternalEList<Reaction>(Reaction.class);
EList<Scope> scopes = getScopes();
for (Scope scope : scopes) {
result.addAll(scope.getReactions());
}
return result;
}
use of org.eclipse.emf.ecore.util.BasicInternalEList in project statecharts by Yakindu.
the class StatechartImpl method getLocalReactions.
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated NOT
*/
public EList<Reaction> getLocalReactions() {
EList<Reaction> result = new BasicInternalEList<Reaction>(Reaction.class);
EList<Scope> scopes = getScopes();
for (Scope scope : scopes) {
result.addAll(scope.getReactions());
}
return result;
}
Aggregations