Java Code Examples for org.eclipse.xtext.xbase.annotations.xAnnotations.XAnnotationsPackage#XANNOTATION__ANNOTATION_TYPE
The following examples show how to use
org.eclipse.xtext.xbase.annotations.xAnnotations.XAnnotationsPackage#XANNOTATION__ANNOTATION_TYPE .
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: XAnnotationImpl.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 XAnnotationsPackage.XANNOTATION__ELEMENT_VALUE_PAIRS: return getElementValuePairs(); case XAnnotationsPackage.XANNOTATION__ANNOTATION_TYPE: if (resolve) return getAnnotationType(); return basicGetAnnotationType(); case XAnnotationsPackage.XANNOTATION__VALUE: return getValue(); } return super.eGet(featureID, resolve, coreType); }
Example 2
Source File: XAnnotationImpl.java From xtext-extras with Eclipse Public License 2.0 | 6 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case XAnnotationsPackage.XANNOTATION__ELEMENT_VALUE_PAIRS: getElementValuePairs().clear(); getElementValuePairs().addAll((Collection<? extends XAnnotationElementValuePair>)newValue); return; case XAnnotationsPackage.XANNOTATION__ANNOTATION_TYPE: setAnnotationType((JvmType)newValue); return; case XAnnotationsPackage.XANNOTATION__VALUE: setValue((XExpression)newValue); return; } super.eSet(featureID, newValue); }
Example 3
Source File: XAnnotationImpl.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 XAnnotationsPackage.XANNOTATION__ELEMENT_VALUE_PAIRS: getElementValuePairs().clear(); return; case XAnnotationsPackage.XANNOTATION__ANNOTATION_TYPE: setAnnotationType((JvmType)null); return; case XAnnotationsPackage.XANNOTATION__VALUE: setValue((XExpression)null); return; } super.eUnset(featureID); }
Example 4
Source File: XAnnotationImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case XAnnotationsPackage.XANNOTATION__ELEMENT_VALUE_PAIRS: return elementValuePairs != null && !elementValuePairs.isEmpty(); case XAnnotationsPackage.XANNOTATION__ANNOTATION_TYPE: return annotationType != null; case XAnnotationsPackage.XANNOTATION__VALUE: return value != null; } return super.eIsSet(featureID); }