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

The following examples show how to use org.eclipse.xtext.common.types.TypesPackage#JVM_ANNOTATION_REFERENCE__EXPLICIT_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: JvmAnnotationReferenceImpl.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_ANNOTATION_REFERENCE__ANNOTATION:
			setAnnotation((JvmAnnotationType)newValue);
			return;
		case TypesPackage.JVM_ANNOTATION_REFERENCE__EXPLICIT_VALUES:
			getExplicitValues().clear();
			getExplicitValues().addAll((Collection<? extends JvmAnnotationValue>)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 2
Source File: JvmAnnotationReferenceImpl.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<JvmAnnotationValue> getExplicitValues()
{
	if (explicitValues == null)
	{
		explicitValues = new EObjectContainmentEList<JvmAnnotationValue>(JvmAnnotationValue.class, this, TypesPackage.JVM_ANNOTATION_REFERENCE__EXPLICIT_VALUES);
	}
	return explicitValues;
}
 
Example 3
Source File: JvmAnnotationReferenceImpl.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_ANNOTATION_REFERENCE__EXPLICIT_VALUES:
			return ((InternalEList<?>)getExplicitValues()).basicRemove(otherEnd, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
Example 4
Source File: JvmAnnotationReferenceImpl.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_ANNOTATION_REFERENCE__ANNOTATION:
			if (resolve) return getAnnotation();
			return basicGetAnnotation();
		case TypesPackage.JVM_ANNOTATION_REFERENCE__EXPLICIT_VALUES:
			return getExplicitValues();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 5
Source File: JvmAnnotationReferenceImpl.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_ANNOTATION_REFERENCE__ANNOTATION:
			setAnnotation((JvmAnnotationType)null);
			return;
		case TypesPackage.JVM_ANNOTATION_REFERENCE__EXPLICIT_VALUES:
			getExplicitValues().clear();
			return;
	}
	super.eUnset(featureID);
}
 
Example 6
Source File: JvmAnnotationReferenceImpl.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_ANNOTATION_REFERENCE__ANNOTATION:
			return annotation != null;
		case TypesPackage.JVM_ANNOTATION_REFERENCE__EXPLICIT_VALUES:
			return explicitValues != null && !explicitValues.isEmpty();
	}
	return super.eIsSet(featureID);
}
 
Example 7
Source File: JvmAnnotationReferenceItemProvider.java    From xtext-eclipse with Eclipse Public License 2.0 5 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(JvmAnnotationReference.class))
	{
		case TypesPackage.JVM_ANNOTATION_REFERENCE__EXPLICIT_VALUES:
			fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false));
			return;
	}
	super.notifyChanged(notification);
}