Java Code Examples for org.eclipse.xtext.common.types.TypesPackage#JVM_FORMAL_PARAMETER__PARAMETER_TYPE

The following examples show how to use org.eclipse.xtext.common.types.TypesPackage#JVM_FORMAL_PARAMETER__PARAMETER_TYPE . 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: JvmFormalParameterItemProvider.java    From xtext-eclipse with Eclipse Public License 2.0 6 votes vote down vote up
/**
 * This handles model notifications by calling {@link #updateChildren} to update any cached
 * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void notifyChanged(Notification notification)
{
	updateChildren(notification);

	switch (notification.getFeatureID(JvmFormalParameter.class))
	{
		case TypesPackage.JVM_FORMAL_PARAMETER__NAME:
			fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true));
			return;
		case TypesPackage.JVM_FORMAL_PARAMETER__PARAMETER_TYPE:
			fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false));
			return;
	}
	super.notifyChanged(notification);
}
 
Example 2
Source File: JvmFormalParameterImpl.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 basicSetParameterType(JvmTypeReference newParameterType, NotificationChain msgs)
{
	JvmTypeReference oldParameterType = parameterType;
	parameterType = newParameterType;
	if (eNotificationRequired())
	{
		ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, TypesPackage.JVM_FORMAL_PARAMETER__PARAMETER_TYPE, oldParameterType, newParameterType);
		if (msgs == null) msgs = notification; else msgs.add(notification);
	}
	return msgs;
}
 
Example 3
Source File: JvmFormalParameterImpl.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 TypesPackage.JVM_FORMAL_PARAMETER__PARAMETER_TYPE:
			return basicSetParameterType(null, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
Example 4
Source File: JvmFormalParameterImpl.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 TypesPackage.JVM_FORMAL_PARAMETER__NAME:
			return getName();
		case TypesPackage.JVM_FORMAL_PARAMETER__PARAMETER_TYPE:
			return getParameterType();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 5
Source File: JvmFormalParameterImpl.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 TypesPackage.JVM_FORMAL_PARAMETER__NAME:
			setName((String)newValue);
			return;
		case TypesPackage.JVM_FORMAL_PARAMETER__PARAMETER_TYPE:
			setParameterType((JvmTypeReference)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 6
Source File: JvmFormalParameterImpl.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 TypesPackage.JVM_FORMAL_PARAMETER__NAME:
			setName(NAME_EDEFAULT);
			return;
		case TypesPackage.JVM_FORMAL_PARAMETER__PARAMETER_TYPE:
			setParameterType((JvmTypeReference)null);
			return;
	}
	super.eUnset(featureID);
}
 
Example 7
Source File: JvmFormalParameterImpl.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 TypesPackage.JVM_FORMAL_PARAMETER__NAME:
			return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
		case TypesPackage.JVM_FORMAL_PARAMETER__PARAMETER_TYPE:
			return parameterType != null;
	}
	return super.eIsSet(featureID);
}