Java Code Examples for org.eclipse.xtext.xbase.XbasePackage#XIF_EXPRESSION__ELSE
The following examples show how to use
org.eclipse.xtext.xbase.XbasePackage#XIF_EXPRESSION__ELSE .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: XIfExpressionImpl.java From xtext-extras with Eclipse Public License 2.0 | 6 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case XbasePackage.XIF_EXPRESSION__IF: return getIf(); case XbasePackage.XIF_EXPRESSION__THEN: return getThen(); case XbasePackage.XIF_EXPRESSION__ELSE: return getElse(); case XbasePackage.XIF_EXPRESSION__CONDITIONAL_EXPRESSION: return isConditionalExpression(); } return super.eGet(featureID, resolve, coreType); }
Example 2
Source File: XIfExpressionImpl.java From xtext-extras with Eclipse Public License 2.0 | 6 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case XbasePackage.XIF_EXPRESSION__IF: setIf((XExpression)newValue); return; case XbasePackage.XIF_EXPRESSION__THEN: setThen((XExpression)newValue); return; case XbasePackage.XIF_EXPRESSION__ELSE: setElse((XExpression)newValue); return; case XbasePackage.XIF_EXPRESSION__CONDITIONAL_EXPRESSION: setConditionalExpression((Boolean)newValue); return; } super.eSet(featureID, newValue); }
Example 3
Source File: XIfExpressionImpl.java From xtext-extras with Eclipse Public License 2.0 | 6 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case XbasePackage.XIF_EXPRESSION__IF: setIf((XExpression)null); return; case XbasePackage.XIF_EXPRESSION__THEN: setThen((XExpression)null); return; case XbasePackage.XIF_EXPRESSION__ELSE: setElse((XExpression)null); return; case XbasePackage.XIF_EXPRESSION__CONDITIONAL_EXPRESSION: setConditionalExpression(CONDITIONAL_EXPRESSION_EDEFAULT); return; } super.eUnset(featureID); }
Example 4
Source File: XIfExpressionImpl.java From xtext-extras with Eclipse Public License 2.0 | 6 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case XbasePackage.XIF_EXPRESSION__IF: return if_ != null; case XbasePackage.XIF_EXPRESSION__THEN: return then != null; case XbasePackage.XIF_EXPRESSION__ELSE: return else_ != null; case XbasePackage.XIF_EXPRESSION__CONDITIONAL_EXPRESSION: return conditionalExpression != CONDITIONAL_EXPRESSION_EDEFAULT; } return super.eIsSet(featureID); }
Example 5
Source File: XIfExpressionImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetElse(XExpression newElse, NotificationChain msgs) { XExpression oldElse = else_; else_ = newElse; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, XbasePackage.XIF_EXPRESSION__ELSE, oldElse, newElse); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; }
Example 6
Source File: XIfExpressionImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case XbasePackage.XIF_EXPRESSION__IF: return basicSetIf(null, msgs); case XbasePackage.XIF_EXPRESSION__THEN: return basicSetThen(null, msgs); case XbasePackage.XIF_EXPRESSION__ELSE: return basicSetElse(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); }