use of com.avaloq.tools.ddk.xtext.scope.scope.GlobalScopeExpression in project dsl-devkit by dsldevkit.
the class ScopeDelegationImpl method basicSetExternal.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetExternal(GlobalScopeExpression newExternal, NotificationChain msgs) {
GlobalScopeExpression oldExternal = external;
external = newExternal;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ScopePackage.SCOPE_DELEGATION__EXTERNAL, oldExternal, newExternal);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
Aggregations