Java Code Examples for org.eclipse.xtext.XtextPackage#LITERAL_CONDITION__TRUE
The following examples show how to use
org.eclipse.xtext.XtextPackage#LITERAL_CONDITION__TRUE .
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: LiteralConditionImpl.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.LITERAL_CONDITION__TRUE: return isTrue(); } return super.eGet(featureID, resolve, coreType); }
Example 2
Source File: LiteralConditionImpl.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.LITERAL_CONDITION__TRUE: setTrue((Boolean)newValue); return; } super.eSet(featureID, newValue); }
Example 3
Source File: LiteralConditionImpl.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.LITERAL_CONDITION__TRUE: setTrue(TRUE_EDEFAULT); return; } super.eUnset(featureID); }
Example 4
Source File: LiteralConditionImpl.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.LITERAL_CONDITION__TRUE: return true_ != TRUE_EDEFAULT; } return super.eIsSet(featureID); }