Java Code Examples for org.eclipse.xtext.XtextPackage#COMPOSITE_CONDITION__LEFT
The following examples show how to use
org.eclipse.xtext.XtextPackage#COMPOSITE_CONDITION__LEFT .
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: CompositeConditionImpl.java From xtext-core with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetLeft(Condition newLeft, NotificationChain msgs) { Condition oldLeft = left; left = newLeft; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, XtextPackage.COMPOSITE_CONDITION__LEFT, oldLeft, newLeft); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; }
Example 2
Source File: CompositeConditionImpl.java From xtext-core 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 XtextPackage.COMPOSITE_CONDITION__LEFT: return basicSetLeft(null, msgs); case XtextPackage.COMPOSITE_CONDITION__RIGHT: return basicSetRight(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); }
Example 3
Source File: CompositeConditionImpl.java From xtext-core with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case XtextPackage.COMPOSITE_CONDITION__LEFT: return getLeft(); case XtextPackage.COMPOSITE_CONDITION__RIGHT: return getRight(); } return super.eGet(featureID, resolve, coreType); }
Example 4
Source File: CompositeConditionImpl.java From xtext-core with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case XtextPackage.COMPOSITE_CONDITION__LEFT: setLeft((Condition)newValue); return; case XtextPackage.COMPOSITE_CONDITION__RIGHT: setRight((Condition)newValue); return; } super.eSet(featureID, newValue); }
Example 5
Source File: CompositeConditionImpl.java From xtext-core with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case XtextPackage.COMPOSITE_CONDITION__LEFT: setLeft((Condition)null); return; case XtextPackage.COMPOSITE_CONDITION__RIGHT: setRight((Condition)null); return; } super.eUnset(featureID); }
Example 6
Source File: CompositeConditionImpl.java From xtext-core with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case XtextPackage.COMPOSITE_CONDITION__LEFT: return left != null; case XtextPackage.COMPOSITE_CONDITION__RIGHT: return right != null; } return super.eIsSet(featureID); }