Java Code Examples for org.eclipse.xtext.XtextPackage#ABSTRACT_RULE__TYPE

The following examples show how to use org.eclipse.xtext.XtextPackage#ABSTRACT_RULE__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: AbstractRuleImpl.java    From xtext-core 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 XtextPackage.ABSTRACT_RULE__NAME:
			setName((String)newValue);
			return;
		case XtextPackage.ABSTRACT_RULE__TYPE:
			setType((TypeRef)newValue);
			return;
		case XtextPackage.ABSTRACT_RULE__ALTERNATIVES:
			setAlternatives((AbstractElement)newValue);
			return;
		case XtextPackage.ABSTRACT_RULE__ANNOTATIONS:
			getAnnotations().clear();
			getAnnotations().addAll((Collection<? extends Annotation>)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 2
Source File: AbstractRuleImpl.java    From xtext-core with Eclipse Public License 2.0 6 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eUnset(int featureID) {
	switch (featureID) {
		case XtextPackage.ABSTRACT_RULE__NAME:
			setName(NAME_EDEFAULT);
			return;
		case XtextPackage.ABSTRACT_RULE__TYPE:
			setType((TypeRef)null);
			return;
		case XtextPackage.ABSTRACT_RULE__ALTERNATIVES:
			setAlternatives((AbstractElement)null);
			return;
		case XtextPackage.ABSTRACT_RULE__ANNOTATIONS:
			getAnnotations().clear();
			return;
	}
	super.eUnset(featureID);
}
 
Example 3
Source File: AbstractRuleImpl.java    From xtext-core with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public NotificationChain basicSetType(TypeRef newType, NotificationChain msgs) {
	TypeRef oldType = type;
	type = newType;
	if (eNotificationRequired()) {
		ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, XtextPackage.ABSTRACT_RULE__TYPE, oldType, newType);
		if (msgs == null) msgs = notification; else msgs.add(notification);
	}
	return msgs;
}
 
Example 4
Source File: AbstractRuleImpl.java    From xtext-core 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 XtextPackage.ABSTRACT_RULE__TYPE:
			return basicSetType(null, msgs);
		case XtextPackage.ABSTRACT_RULE__ALTERNATIVES:
			return basicSetAlternatives(null, msgs);
		case XtextPackage.ABSTRACT_RULE__ANNOTATIONS:
			return ((InternalEList<?>)getAnnotations()).basicRemove(otherEnd, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
Example 5
Source File: AbstractRuleImpl.java    From xtext-core 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 XtextPackage.ABSTRACT_RULE__NAME:
			return getName();
		case XtextPackage.ABSTRACT_RULE__TYPE:
			return getType();
		case XtextPackage.ABSTRACT_RULE__ALTERNATIVES:
			return getAlternatives();
		case XtextPackage.ABSTRACT_RULE__ANNOTATIONS:
			return getAnnotations();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 6
Source File: AbstractRuleImpl.java    From xtext-core 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 XtextPackage.ABSTRACT_RULE__NAME:
			return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
		case XtextPackage.ABSTRACT_RULE__TYPE:
			return type != null;
		case XtextPackage.ABSTRACT_RULE__ALTERNATIVES:
			return alternatives != null;
		case XtextPackage.ABSTRACT_RULE__ANNOTATIONS:
			return annotations != null && !annotations.isEmpty();
	}
	return super.eIsSet(featureID);
}