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

The following examples show how to use org.eclipse.xtext.common.types.TypesPackage#JVM_COMPOUND_TYPE_REFERENCE__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: JvmCompoundTypeReferenceImpl.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 TypesPackage.JVM_COMPOUND_TYPE_REFERENCE__TYPE:
			setType((JvmType)newValue);
			return;
		case TypesPackage.JVM_COMPOUND_TYPE_REFERENCE__REFERENCES:
			getReferences().clear();
			getReferences().addAll((Collection<? extends JvmTypeReference>)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 2
Source File: JvmCompoundTypeReferenceImpl.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_COMPOUND_TYPE_REFERENCE__TYPE:
			if (resolve) return getType();
			return basicGetType();
		case TypesPackage.JVM_COMPOUND_TYPE_REFERENCE__REFERENCES:
			return getReferences();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 3
Source File: JvmCompoundTypeReferenceImpl.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_COMPOUND_TYPE_REFERENCE__TYPE:
			setType((JvmType)null);
			return;
		case TypesPackage.JVM_COMPOUND_TYPE_REFERENCE__REFERENCES:
			getReferences().clear();
			return;
	}
	super.eUnset(featureID);
}
 
Example 4
Source File: JvmCompoundTypeReferenceImpl.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_COMPOUND_TYPE_REFERENCE__TYPE:
			return type != null;
		case TypesPackage.JVM_COMPOUND_TYPE_REFERENCE__REFERENCES:
			return references != null && !references.isEmpty();
	}
	return super.eIsSet(featureID);
}