Java Code Examples for org.eclipse.xtext.xbase.XbasePackage#XFOR_LOOP_EXPRESSION__DECLARED_PARAM

The following examples show how to use org.eclipse.xtext.xbase.XbasePackage#XFOR_LOOP_EXPRESSION__DECLARED_PARAM . 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: XForLoopExpressionImpl.java    From xtext-extras with Eclipse Public License 2.0 6 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eSet(int featureID, Object newValue)
{
	switch (featureID)
	{
		case XbasePackage.XFOR_LOOP_EXPRESSION__FOR_EXPRESSION:
			setForExpression((XExpression)newValue);
			return;
		case XbasePackage.XFOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			setEachExpression((XExpression)newValue);
			return;
		case XbasePackage.XFOR_LOOP_EXPRESSION__DECLARED_PARAM:
			setDeclaredParam((JvmFormalParameter)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 2
Source File: XForLoopExpressionImpl.java    From xtext-extras with Eclipse Public License 2.0 6 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eUnset(int featureID)
{
	switch (featureID)
	{
		case XbasePackage.XFOR_LOOP_EXPRESSION__FOR_EXPRESSION:
			setForExpression((XExpression)null);
			return;
		case XbasePackage.XFOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			setEachExpression((XExpression)null);
			return;
		case XbasePackage.XFOR_LOOP_EXPRESSION__DECLARED_PARAM:
			setDeclaredParam((JvmFormalParameter)null);
			return;
	}
	super.eUnset(featureID);
}
 
Example 3
Source File: XForLoopExpressionImpl.java    From xtext-extras with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public NotificationChain basicSetDeclaredParam(JvmFormalParameter newDeclaredParam, NotificationChain msgs)
{
	JvmFormalParameter oldDeclaredParam = declaredParam;
	declaredParam = newDeclaredParam;
	if (eNotificationRequired())
	{
		ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, XbasePackage.XFOR_LOOP_EXPRESSION__DECLARED_PARAM, oldDeclaredParam, newDeclaredParam);
		if (msgs == null) msgs = notification; else msgs.add(notification);
	}
	return msgs;
}
 
Example 4
Source File: XForLoopExpressionImpl.java    From xtext-extras with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs)
{
	switch (featureID)
	{
		case XbasePackage.XFOR_LOOP_EXPRESSION__FOR_EXPRESSION:
			return basicSetForExpression(null, msgs);
		case XbasePackage.XFOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			return basicSetEachExpression(null, msgs);
		case XbasePackage.XFOR_LOOP_EXPRESSION__DECLARED_PARAM:
			return basicSetDeclaredParam(null, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
Example 5
Source File: XForLoopExpressionImpl.java    From xtext-extras with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType)
{
	switch (featureID)
	{
		case XbasePackage.XFOR_LOOP_EXPRESSION__FOR_EXPRESSION:
			return getForExpression();
		case XbasePackage.XFOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			return getEachExpression();
		case XbasePackage.XFOR_LOOP_EXPRESSION__DECLARED_PARAM:
			return getDeclaredParam();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 6
Source File: XForLoopExpressionImpl.java    From xtext-extras with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public boolean eIsSet(int featureID)
{
	switch (featureID)
	{
		case XbasePackage.XFOR_LOOP_EXPRESSION__FOR_EXPRESSION:
			return forExpression != null;
		case XbasePackage.XFOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			return eachExpression != null;
		case XbasePackage.XFOR_LOOP_EXPRESSION__DECLARED_PARAM:
			return declaredParam != null;
	}
	return super.eIsSet(featureID);
}