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

The following examples show how to use org.eclipse.xtext.common.types.TypesPackage#JVM_TYPE_CONSTRAINT__OWNER . 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: JvmTypeConstraintImpl.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 setOwner(JvmConstraintOwner newOwner)
{
	if (newOwner != eInternalContainer() || (eContainerFeatureID() != TypesPackage.JVM_TYPE_CONSTRAINT__OWNER && newOwner != null))
	{
		if (EcoreUtil.isAncestor(this, newOwner))
			throw new IllegalArgumentException("Recursive containment not allowed for " + toString());
		NotificationChain msgs = null;
		if (eInternalContainer() != null)
			msgs = eBasicRemoveFromContainer(msgs);
		if (newOwner != null)
			msgs = ((InternalEObject)newOwner).eInverseAdd(this, TypesPackage.JVM_CONSTRAINT_OWNER__CONSTRAINTS, JvmConstraintOwner.class, msgs);
		msgs = basicSetOwner(newOwner, msgs);
		if (msgs != null) msgs.dispatch();
	}
	else if (eNotificationRequired())
		eNotify(new ENotificationImpl(this, Notification.SET, TypesPackage.JVM_TYPE_CONSTRAINT__OWNER, newOwner, newOwner));
}
 
Example 2
Source File: JvmTypeParameterImpl.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<JvmTypeConstraint> getConstraints()
{
	if (constraints == null)
	{
		constraints = new EObjectContainmentWithInverseEList<JvmTypeConstraint>(JvmTypeConstraint.class, this, TypesPackage.JVM_TYPE_PARAMETER__CONSTRAINTS, TypesPackage.JVM_TYPE_CONSTRAINT__OWNER);
	}
	return constraints;
}
 
Example 3
Source File: JvmTypeConstraintImpl.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 JvmConstraintOwner getOwner()
{
	if (eContainerFeatureID() != TypesPackage.JVM_TYPE_CONSTRAINT__OWNER) return null;
	return (JvmConstraintOwner)eInternalContainer();
}
 
Example 4
Source File: JvmTypeConstraintImpl.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 eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs)
{
	switch (featureID)
	{
		case TypesPackage.JVM_TYPE_CONSTRAINT__OWNER:
			if (eInternalContainer() != null)
				msgs = eBasicRemoveFromContainer(msgs);
			return basicSetOwner((JvmConstraintOwner)otherEnd, msgs);
	}
	return super.eInverseAdd(otherEnd, featureID, msgs);
}
 
Example 5
Source File: JvmTypeConstraintImpl.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_TYPE_CONSTRAINT__TYPE_REFERENCE:
			return basicSetTypeReference(null, msgs);
		case TypesPackage.JVM_TYPE_CONSTRAINT__OWNER:
			return basicSetOwner(null, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
Example 6
Source File: JvmTypeConstraintImpl.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 eBasicRemoveFromContainerFeature(NotificationChain msgs)
{
	switch (eContainerFeatureID())
	{
		case TypesPackage.JVM_TYPE_CONSTRAINT__OWNER:
			return eInternalContainer().eInverseRemove(this, TypesPackage.JVM_CONSTRAINT_OWNER__CONSTRAINTS, JvmConstraintOwner.class, msgs);
	}
	return super.eBasicRemoveFromContainerFeature(msgs);
}
 
Example 7
Source File: JvmTypeConstraintImpl.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_TYPE_CONSTRAINT__TYPE_REFERENCE:
			return getTypeReference();
		case TypesPackage.JVM_TYPE_CONSTRAINT__OWNER:
			return getOwner();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 8
Source File: JvmTypeConstraintImpl.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_TYPE_CONSTRAINT__TYPE_REFERENCE:
			setTypeReference((JvmTypeReference)newValue);
			return;
		case TypesPackage.JVM_TYPE_CONSTRAINT__OWNER:
			setOwner((JvmConstraintOwner)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 9
Source File: JvmTypeConstraintImpl.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_TYPE_CONSTRAINT__TYPE_REFERENCE:
			setTypeReference((JvmTypeReference)null);
			return;
		case TypesPackage.JVM_TYPE_CONSTRAINT__OWNER:
			setOwner((JvmConstraintOwner)null);
			return;
	}
	super.eUnset(featureID);
}
 
Example 10
Source File: JvmTypeConstraintImpl.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_TYPE_CONSTRAINT__TYPE_REFERENCE:
			return typeReference != null;
		case TypesPackage.JVM_TYPE_CONSTRAINT__OWNER:
			return getOwner() != null;
	}
	return super.eIsSet(featureID);
}
 
Example 11
Source File: JvmWildcardTypeReferenceImpl.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<JvmTypeConstraint> getConstraints()
{
	if (constraints == null)
	{
		constraints = new EObjectContainmentWithInverseEList<JvmTypeConstraint>(JvmTypeConstraint.class, this, TypesPackage.JVM_WILDCARD_TYPE_REFERENCE__CONSTRAINTS, TypesPackage.JVM_TYPE_CONSTRAINT__OWNER);
	}
	return constraints;
}
 
Example 12
Source File: JvmConstraintOwnerImpl.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<JvmTypeConstraint> getConstraints()
{
	if (constraints == null)
	{
		constraints = new EObjectContainmentWithInverseEList<JvmTypeConstraint>(JvmTypeConstraint.class, this, TypesPackage.JVM_CONSTRAINT_OWNER__CONSTRAINTS, TypesPackage.JVM_TYPE_CONSTRAINT__OWNER);
	}
	return constraints;
}