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

The following examples show how to use org.eclipse.xtext.xbase.XbasePackage#XBINARY_OPERATION__LEFT_OPERAND . 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: XBinaryOperationImpl.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.XBINARY_OPERATION__LEFT_OPERAND:
			setLeftOperand((XExpression)newValue);
			return;
		case XbasePackage.XBINARY_OPERATION__RIGHT_OPERAND:
			setRightOperand((XExpression)newValue);
			return;
		case XbasePackage.XBINARY_OPERATION__REASSIGN_FIRST_ARGUMENT:
			setReassignFirstArgument((Boolean)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 2
Source File: XBinaryOperationImpl.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.XBINARY_OPERATION__LEFT_OPERAND:
			setLeftOperand((XExpression)null);
			return;
		case XbasePackage.XBINARY_OPERATION__RIGHT_OPERAND:
			setRightOperand((XExpression)null);
			return;
		case XbasePackage.XBINARY_OPERATION__REASSIGN_FIRST_ARGUMENT:
			setReassignFirstArgument(REASSIGN_FIRST_ARGUMENT_EDEFAULT);
			return;
	}
	super.eUnset(featureID);
}
 
Example 3
Source File: XBinaryOperationImpl.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 basicSetLeftOperand(XExpression newLeftOperand, NotificationChain msgs)
{
	XExpression oldLeftOperand = leftOperand;
	leftOperand = newLeftOperand;
	if (eNotificationRequired())
	{
		ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, XbasePackage.XBINARY_OPERATION__LEFT_OPERAND, oldLeftOperand, newLeftOperand);
		if (msgs == null) msgs = notification; else msgs.add(notification);
	}
	return msgs;
}
 
Example 4
Source File: XBinaryOperationImpl.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.XBINARY_OPERATION__LEFT_OPERAND:
			return basicSetLeftOperand(null, msgs);
		case XbasePackage.XBINARY_OPERATION__RIGHT_OPERAND:
			return basicSetRightOperand(null, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
Example 5
Source File: XBinaryOperationImpl.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.XBINARY_OPERATION__LEFT_OPERAND:
			return getLeftOperand();
		case XbasePackage.XBINARY_OPERATION__RIGHT_OPERAND:
			return getRightOperand();
		case XbasePackage.XBINARY_OPERATION__REASSIGN_FIRST_ARGUMENT:
			return isReassignFirstArgument();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 6
Source File: XBinaryOperationImpl.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.XBINARY_OPERATION__LEFT_OPERAND:
			return leftOperand != null;
		case XbasePackage.XBINARY_OPERATION__RIGHT_OPERAND:
			return rightOperand != null;
		case XbasePackage.XBINARY_OPERATION__REASSIGN_FIRST_ARGUMENT:
			return reassignFirstArgument != REASSIGN_FIRST_ARGUMENT_EDEFAULT;
	}
	return super.eIsSet(featureID);
}