Java Code Examples for org.eclipse.xtext.xbase.XbasePackage#XTRY_CATCH_FINALLY_EXPRESSION__RESOURCES
The following examples show how to use
org.eclipse.xtext.xbase.XbasePackage#XTRY_CATCH_FINALLY_EXPRESSION__RESOURCES .
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: XTryCatchFinallyExpressionImpl.java From xtext-extras with Eclipse Public License 2.0 | 6 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__EXPRESSION: return basicSetExpression(null, msgs); case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__FINALLY_EXPRESSION: return basicSetFinallyExpression(null, msgs); case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__CATCH_CLAUSES: return ((InternalEList<?>)getCatchClauses()).basicRemove(otherEnd, msgs); case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__RESOURCES: return ((InternalEList<?>)getResources()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); }
Example 2
Source File: XTryCatchFinallyExpressionImpl.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.XTRY_CATCH_FINALLY_EXPRESSION__EXPRESSION: return getExpression(); case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__FINALLY_EXPRESSION: return getFinallyExpression(); case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__CATCH_CLAUSES: return getCatchClauses(); case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__RESOURCES: return getResources(); } return super.eGet(featureID, resolve, coreType); }
Example 3
Source File: XTryCatchFinallyExpressionImpl.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 XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__EXPRESSION: setExpression((XExpression)newValue); return; case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__FINALLY_EXPRESSION: setFinallyExpression((XExpression)newValue); return; case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__CATCH_CLAUSES: getCatchClauses().clear(); getCatchClauses().addAll((Collection<? extends XCatchClause>)newValue); return; case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__RESOURCES: getResources().clear(); getResources().addAll((Collection<? extends XVariableDeclaration>)newValue); return; } super.eSet(featureID, newValue); }
Example 4
Source File: XTryCatchFinallyExpressionImpl.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.XTRY_CATCH_FINALLY_EXPRESSION__EXPRESSION: setExpression((XExpression)null); return; case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__FINALLY_EXPRESSION: setFinallyExpression((XExpression)null); return; case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__CATCH_CLAUSES: getCatchClauses().clear(); return; case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__RESOURCES: getResources().clear(); return; } super.eUnset(featureID); }
Example 5
Source File: XTryCatchFinallyExpressionImpl.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.XTRY_CATCH_FINALLY_EXPRESSION__EXPRESSION: return expression != null; case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__FINALLY_EXPRESSION: return finallyExpression != null; case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__CATCH_CLAUSES: return catchClauses != null && !catchClauses.isEmpty(); case XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__RESOURCES: return resources != null && !resources.isEmpty(); } return super.eIsSet(featureID); }
Example 6
Source File: XTryCatchFinallyExpressionImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @since 2.18 * @generated */ @Override public EList<XVariableDeclaration> getResources() { if (resources == null) { resources = new EObjectContainmentEList<XVariableDeclaration>(XVariableDeclaration.class, this, XbasePackage.XTRY_CATCH_FINALLY_EXPRESSION__RESOURCES); } return resources; }