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

The following examples show how to use org.eclipse.xtext.xbase.XbasePackage#XCASE_PART__TYPE_GUARD . 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: XCasePartImpl.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.XCASE_PART__CASE:
			return getCase();
		case XbasePackage.XCASE_PART__THEN:
			return getThen();
		case XbasePackage.XCASE_PART__TYPE_GUARD:
			return getTypeGuard();
		case XbasePackage.XCASE_PART__FALL_THROUGH:
			return isFallThrough();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 2
Source File: XCasePartImpl.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.XCASE_PART__CASE:
			setCase((XExpression)newValue);
			return;
		case XbasePackage.XCASE_PART__THEN:
			setThen((XExpression)newValue);
			return;
		case XbasePackage.XCASE_PART__TYPE_GUARD:
			setTypeGuard((JvmTypeReference)newValue);
			return;
		case XbasePackage.XCASE_PART__FALL_THROUGH:
			setFallThrough((Boolean)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 3
Source File: XCasePartImpl.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.XCASE_PART__CASE:
			setCase((XExpression)null);
			return;
		case XbasePackage.XCASE_PART__THEN:
			setThen((XExpression)null);
			return;
		case XbasePackage.XCASE_PART__TYPE_GUARD:
			setTypeGuard((JvmTypeReference)null);
			return;
		case XbasePackage.XCASE_PART__FALL_THROUGH:
			setFallThrough(FALL_THROUGH_EDEFAULT);
			return;
	}
	super.eUnset(featureID);
}
 
Example 4
Source File: XCasePartImpl.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.XCASE_PART__CASE:
			return case_ != null;
		case XbasePackage.XCASE_PART__THEN:
			return then != null;
		case XbasePackage.XCASE_PART__TYPE_GUARD:
			return typeGuard != null;
		case XbasePackage.XCASE_PART__FALL_THROUGH:
			return fallThrough != FALL_THROUGH_EDEFAULT;
	}
	return super.eIsSet(featureID);
}
 
Example 5
Source File: XCasePartImpl.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 basicSetTypeGuard(JvmTypeReference newTypeGuard, NotificationChain msgs)
{
	JvmTypeReference oldTypeGuard = typeGuard;
	typeGuard = newTypeGuard;
	if (eNotificationRequired())
	{
		ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, XbasePackage.XCASE_PART__TYPE_GUARD, oldTypeGuard, newTypeGuard);
		if (msgs == null) msgs = notification; else msgs.add(notification);
	}
	return msgs;
}
 
Example 6
Source File: XCasePartImpl.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.XCASE_PART__CASE:
			return basicSetCase(null, msgs);
		case XbasePackage.XCASE_PART__THEN:
			return basicSetThen(null, msgs);
		case XbasePackage.XCASE_PART__TYPE_GUARD:
			return basicSetTypeGuard(null, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}