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

The following examples show how to use org.eclipse.xtext.xbase.XbasePackage#XABSTRACT_WHILE_EXPRESSION__PREDICATE . 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: XAbstractWhileExpressionImpl.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 basicSetPredicate(XExpression newPredicate, NotificationChain msgs)
{
	XExpression oldPredicate = predicate;
	predicate = newPredicate;
	if (eNotificationRequired())
	{
		ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, XbasePackage.XABSTRACT_WHILE_EXPRESSION__PREDICATE, oldPredicate, newPredicate);
		if (msgs == null) msgs = notification; else msgs.add(notification);
	}
	return msgs;
}
 
Example 2
Source File: XAbstractWhileExpressionImpl.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.XABSTRACT_WHILE_EXPRESSION__PREDICATE:
			return basicSetPredicate(null, msgs);
		case XbasePackage.XABSTRACT_WHILE_EXPRESSION__BODY:
			return basicSetBody(null, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
Example 3
Source File: XAbstractWhileExpressionImpl.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.XABSTRACT_WHILE_EXPRESSION__PREDICATE:
			return getPredicate();
		case XbasePackage.XABSTRACT_WHILE_EXPRESSION__BODY:
			return getBody();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 4
Source File: XAbstractWhileExpressionImpl.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 void eSet(int featureID, Object newValue)
{
	switch (featureID)
	{
		case XbasePackage.XABSTRACT_WHILE_EXPRESSION__PREDICATE:
			setPredicate((XExpression)newValue);
			return;
		case XbasePackage.XABSTRACT_WHILE_EXPRESSION__BODY:
			setBody((XExpression)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 5
Source File: XAbstractWhileExpressionImpl.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 void eUnset(int featureID)
{
	switch (featureID)
	{
		case XbasePackage.XABSTRACT_WHILE_EXPRESSION__PREDICATE:
			setPredicate((XExpression)null);
			return;
		case XbasePackage.XABSTRACT_WHILE_EXPRESSION__BODY:
			setBody((XExpression)null);
			return;
	}
	super.eUnset(featureID);
}
 
Example 6
Source File: XAbstractWhileExpressionImpl.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.XABSTRACT_WHILE_EXPRESSION__PREDICATE:
			return predicate != null;
		case XbasePackage.XABSTRACT_WHILE_EXPRESSION__BODY:
			return body != null;
	}
	return super.eIsSet(featureID);
}