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

The following examples show how to use org.eclipse.xtext.xbase.XbasePackage#XFEATURE_CALL__FEATURE_CALL_ARGUMENTS . 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: XFeatureCallImpl.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.XFEATURE_CALL__FEATURE_CALL_ARGUMENTS:
			return getFeatureCallArguments();
		case XbasePackage.XFEATURE_CALL__EXPLICIT_OPERATION_CALL:
			return isExplicitOperationCall();
		case XbasePackage.XFEATURE_CALL__TYPE_LITERAL:
			return isTypeLiteral();
		case XbasePackage.XFEATURE_CALL__PACKAGE_FRAGMENT:
			return isPackageFragment();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 2
Source File: XFeatureCallImpl.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.XFEATURE_CALL__FEATURE_CALL_ARGUMENTS:
			getFeatureCallArguments().clear();
			getFeatureCallArguments().addAll((Collection<? extends XExpression>)newValue);
			return;
		case XbasePackage.XFEATURE_CALL__EXPLICIT_OPERATION_CALL:
			setExplicitOperationCall((Boolean)newValue);
			return;
		case XbasePackage.XFEATURE_CALL__TYPE_LITERAL:
			setTypeLiteral((Boolean)newValue);
			return;
		case XbasePackage.XFEATURE_CALL__PACKAGE_FRAGMENT:
			setPackageFragment((Boolean)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 3
Source File: XFeatureCallImpl.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.XFEATURE_CALL__FEATURE_CALL_ARGUMENTS:
			getFeatureCallArguments().clear();
			return;
		case XbasePackage.XFEATURE_CALL__EXPLICIT_OPERATION_CALL:
			setExplicitOperationCall(EXPLICIT_OPERATION_CALL_EDEFAULT);
			return;
		case XbasePackage.XFEATURE_CALL__TYPE_LITERAL:
			setTypeLiteral(TYPE_LITERAL_EDEFAULT);
			return;
		case XbasePackage.XFEATURE_CALL__PACKAGE_FRAGMENT:
			setPackageFragment(PACKAGE_FRAGMENT_EDEFAULT);
			return;
	}
	super.eUnset(featureID);
}
 
Example 4
Source File: XFeatureCallImpl.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.XFEATURE_CALL__FEATURE_CALL_ARGUMENTS:
			return featureCallArguments != null && !featureCallArguments.isEmpty();
		case XbasePackage.XFEATURE_CALL__EXPLICIT_OPERATION_CALL:
			return explicitOperationCall != EXPLICIT_OPERATION_CALL_EDEFAULT;
		case XbasePackage.XFEATURE_CALL__TYPE_LITERAL:
			return typeLiteral != TYPE_LITERAL_EDEFAULT;
		case XbasePackage.XFEATURE_CALL__PACKAGE_FRAGMENT:
			return packageFragment != PACKAGE_FRAGMENT_EDEFAULT;
	}
	return super.eIsSet(featureID);
}
 
Example 5
Source File: XFeatureCallImpl.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> getFeatureCallArguments()
{
	if (featureCallArguments == null)
	{
		featureCallArguments = new EObjectContainmentEList<XExpression>(XExpression.class, this, XbasePackage.XFEATURE_CALL__FEATURE_CALL_ARGUMENTS);
	}
	return featureCallArguments;
}
 
Example 6
Source File: XFeatureCallImpl.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.XFEATURE_CALL__FEATURE_CALL_ARGUMENTS:
			return ((InternalEList<?>)getFeatureCallArguments()).basicRemove(otherEnd, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}