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

The following examples show how to use org.eclipse.xtext.xbase.XbasePackage#XBASIC_FOR_LOOP_EXPRESSION__INIT_EXPRESSIONS . 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: XBasicForLoopExpressionImpl.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 NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs)
{
	switch (featureID)
	{
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__EXPRESSION:
			return basicSetExpression(null, msgs);
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			return basicSetEachExpression(null, msgs);
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__INIT_EXPRESSIONS:
			return ((InternalEList<?>)getInitExpressions()).basicRemove(otherEnd, msgs);
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__UPDATE_EXPRESSIONS:
			return ((InternalEList<?>)getUpdateExpressions()).basicRemove(otherEnd, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
Example 2
Source File: XBasicForLoopExpressionImpl.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 Object eGet(int featureID, boolean resolve, boolean coreType)
{
	switch (featureID)
	{
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__EXPRESSION:
			return getExpression();
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			return getEachExpression();
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__INIT_EXPRESSIONS:
			return getInitExpressions();
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__UPDATE_EXPRESSIONS:
			return getUpdateExpressions();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 3
Source File: XBasicForLoopExpressionImpl.java    From xtext-extras with Eclipse Public License 2.0 6 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue)
{
	switch (featureID)
	{
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__EXPRESSION:
			setExpression((XExpression)newValue);
			return;
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			setEachExpression((XExpression)newValue);
			return;
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__INIT_EXPRESSIONS:
			getInitExpressions().clear();
			getInitExpressions().addAll((Collection<? extends XExpression>)newValue);
			return;
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__UPDATE_EXPRESSIONS:
			getUpdateExpressions().clear();
			getUpdateExpressions().addAll((Collection<? extends XExpression>)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 4
Source File: XBasicForLoopExpressionImpl.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.XBASIC_FOR_LOOP_EXPRESSION__EXPRESSION:
			setExpression((XExpression)null);
			return;
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			setEachExpression((XExpression)null);
			return;
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__INIT_EXPRESSIONS:
			getInitExpressions().clear();
			return;
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__UPDATE_EXPRESSIONS:
			getUpdateExpressions().clear();
			return;
	}
	super.eUnset(featureID);
}
 
Example 5
Source File: XBasicForLoopExpressionImpl.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 boolean eIsSet(int featureID)
{
	switch (featureID)
	{
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__EXPRESSION:
			return expression != null;
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__EACH_EXPRESSION:
			return eachExpression != null;
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__INIT_EXPRESSIONS:
			return initExpressions != null && !initExpressions.isEmpty();
		case XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__UPDATE_EXPRESSIONS:
			return updateExpressions != null && !updateExpressions.isEmpty();
	}
	return super.eIsSet(featureID);
}
 
Example 6
Source File: XBasicForLoopExpressionImpl.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 EList<XExpression> getInitExpressions()
{
	if (initExpressions == null)
	{
		initExpressions = new EObjectContainmentEList<XExpression>(XExpression.class, this, XbasePackage.XBASIC_FOR_LOOP_EXPRESSION__INIT_EXPRESSIONS);
	}
	return initExpressions;
}