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

The following examples show how to use org.eclipse.xtext.common.types.TypesPackage#JVM_ENUM_ANNOTATION_VALUE__VALUES . 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: JvmEnumAnnotationValueImpl.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<JvmEnumerationLiteral> getValues()
{
	if (values == null)
	{
		values = new EObjectResolvingEList<JvmEnumerationLiteral>(JvmEnumerationLiteral.class, this, TypesPackage.JVM_ENUM_ANNOTATION_VALUE__VALUES);
	}
	return values;
}
 
Example 2
Source File: JvmEnumAnnotationValueImpl.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_ENUM_ANNOTATION_VALUE__VALUES:
			return getValues();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 3
Source File: JvmEnumAnnotationValueImpl.java    From xtext-extras with Eclipse Public License 2.0 5 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_ENUM_ANNOTATION_VALUE__VALUES:
			getValues().clear();
			getValues().addAll((Collection<? extends JvmEnumerationLiteral>)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 4
Source File: JvmEnumAnnotationValueImpl.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_ENUM_ANNOTATION_VALUE__VALUES:
			getValues().clear();
			return;
	}
	super.eUnset(featureID);
}
 
Example 5
Source File: JvmEnumAnnotationValueImpl.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_ENUM_ANNOTATION_VALUE__VALUES:
			return values != null && !values.isEmpty();
	}
	return super.eIsSet(featureID);
}