use of org.eclipse.xtext.testlanguages.backtracking.beeLangTestLanguage.Expression in project xtext-core by eclipse.
the class WithExpressionImpl method basicSetFuncExpr.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetFuncExpr(Expression newFuncExpr, NotificationChain msgs) {
Expression oldFuncExpr = funcExpr;
funcExpr = newFuncExpr;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BeeLangTestLanguagePackage.WITH_EXPRESSION__FUNC_EXPR, oldFuncExpr, newFuncExpr);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of org.eclipse.xtext.testlanguages.backtracking.beeLangTestLanguage.Expression in project xtext-core by eclipse.
the class AssignmentExpressionImpl method basicSetRightExpr.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetRightExpr(Expression newRightExpr, NotificationChain msgs) {
Expression oldRightExpr = rightExpr;
rightExpr = newRightExpr;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BeeLangTestLanguagePackage.ASSIGNMENT_EXPRESSION__RIGHT_EXPR, oldRightExpr, newRightExpr);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of org.eclipse.xtext.testlanguages.backtracking.beeLangTestLanguage.Expression in project xtext-core by eclipse.
the class AssignmentExpressionImpl method basicSetLeftExpr.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetLeftExpr(Expression newLeftExpr, NotificationChain msgs) {
Expression oldLeftExpr = leftExpr;
leftExpr = newLeftExpr;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BeeLangTestLanguagePackage.ASSIGNMENT_EXPRESSION__LEFT_EXPR, oldLeftExpr, newLeftExpr);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
Aggregations