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

The following examples show how to use org.eclipse.xtext.XtextPackage#ENUM_LITERAL_DECLARATION__LITERAL . 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: EnumLiteralDeclarationImpl.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 basicSetLiteral(Keyword newLiteral, NotificationChain msgs) {
	Keyword oldLiteral = literal;
	literal = newLiteral;
	if (eNotificationRequired()) {
		ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, XtextPackage.ENUM_LITERAL_DECLARATION__LITERAL, oldLiteral, newLiteral);
		if (msgs == null) msgs = notification; else msgs.add(notification);
	}
	return msgs;
}
 
Example 2
Source File: EnumLiteralDeclarationImpl.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.ENUM_LITERAL_DECLARATION__LITERAL:
			return basicSetLiteral(null, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
Example 3
Source File: EnumLiteralDeclarationImpl.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.ENUM_LITERAL_DECLARATION__ENUM_LITERAL:
			if (resolve) return getEnumLiteral();
			return basicGetEnumLiteral();
		case XtextPackage.ENUM_LITERAL_DECLARATION__LITERAL:
			return getLiteral();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
Example 4
Source File: EnumLiteralDeclarationImpl.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 void eSet(int featureID, Object newValue) {
	switch (featureID) {
		case XtextPackage.ENUM_LITERAL_DECLARATION__ENUM_LITERAL:
			setEnumLiteral((EEnumLiteral)newValue);
			return;
		case XtextPackage.ENUM_LITERAL_DECLARATION__LITERAL:
			setLiteral((Keyword)newValue);
			return;
	}
	super.eSet(featureID, newValue);
}
 
Example 5
Source File: EnumLiteralDeclarationImpl.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 void eUnset(int featureID) {
	switch (featureID) {
		case XtextPackage.ENUM_LITERAL_DECLARATION__ENUM_LITERAL:
			setEnumLiteral((EEnumLiteral)null);
			return;
		case XtextPackage.ENUM_LITERAL_DECLARATION__LITERAL:
			setLiteral((Keyword)null);
			return;
	}
	super.eUnset(featureID);
}
 
Example 6
Source File: EnumLiteralDeclarationImpl.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.ENUM_LITERAL_DECLARATION__ENUM_LITERAL:
			return enumLiteral != null;
		case XtextPackage.ENUM_LITERAL_DECLARATION__LITERAL:
			return literal != null;
	}
	return super.eIsSet(featureID);
}