use of edu.uah.rsesc.aadlsimulator.xtext.inputConstraint.Operator in project AGREE by loonwerks.
the class BinaryExpressionImpl method setOp.
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void setOp(Operator newOp) {
Operator oldOp = op;
op = newOp == null ? OP_EDEFAULT : newOp;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, InputConstraintPackage.BINARY_EXPRESSION__OP, oldOp, op));
}
Aggregations