use of com.rockwellcollins.atc.agree.agree.Expr in project AGREE by loonwerks.
the class LinearizationDefImpl method basicSetPrecision.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetPrecision(Expr newPrecision, NotificationChain msgs) {
Expr oldPrecision = precision;
precision = newPrecision;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, AgreePackage.LINEARIZATION_DEF__PRECISION, oldPrecision, newPrecision);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of com.rockwellcollins.atc.agree.agree.Expr in project AGREE by loonwerks.
the class LinearizationDefImpl method basicSetExprBody.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetExprBody(Expr newExprBody, NotificationChain msgs) {
Expr oldExprBody = exprBody;
exprBody = newExprBody;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, AgreePackage.LINEARIZATION_DEF__EXPR_BODY, oldExprBody, newExprBody);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of com.rockwellcollins.atc.agree.agree.Expr in project AGREE by loonwerks.
the class LinearizationIntervalImpl method basicSetStart.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetStart(Expr newStart, NotificationChain msgs) {
Expr oldStart = start;
start = newStart;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, AgreePackage.LINEARIZATION_INTERVAL__START, oldStart, newStart);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of com.rockwellcollins.atc.agree.agree.Expr in project AGREE by loonwerks.
the class LinearizationIntervalImpl method basicSetEnd.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetEnd(Expr newEnd, NotificationChain msgs) {
Expr oldEnd = end;
end = newEnd;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, AgreePackage.LINEARIZATION_INTERVAL__END, oldEnd, newEnd);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
use of com.rockwellcollins.atc.agree.agree.Expr in project AGREE by loonwerks.
the class IfThenElseExprImpl method basicSetC.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetC(Expr newC, NotificationChain msgs) {
Expr oldC = c;
c = newC;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, AgreePackage.IF_THEN_ELSE_EXPR__C, oldC, newC);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
Aggregations