Search in sources :

Example 1 with Greeting

use of org.eclipse.xtext.testlanguages.optionalEmpty.Greeting in project xtext-core by eclipse.

the class OptionalEmptyTestLanguageSemanticSequencer method sequence.

@Override
public void sequence(ISerializationContext context, EObject semanticObject) {
    EPackage epackage = semanticObject.eClass().getEPackage();
    ParserRule rule = context.getParserRule();
    Action action = context.getAssignedAction();
    Set<Parameter> parameters = context.getEnabledBooleanParameters();
    if (epackage == OptionalEmptyPackage.eINSTANCE)
        switch(semanticObject.eClass().getClassifierID()) {
            case OptionalEmptyPackage.GREETING:
                sequence_Greeting(context, (Greeting) semanticObject);
                return;
            case OptionalEmptyPackage.MODEL:
                sequence_Model(context, (Model) semanticObject);
                return;
        }
    if (errorAcceptor != null)
        errorAcceptor.accept(diagnosticProvider.createInvalidContextOrTypeDiagnostic(semanticObject, context));
}
Also used : ParserRule(org.eclipse.xtext.ParserRule) Greeting(org.eclipse.xtext.testlanguages.optionalEmpty.Greeting) Action(org.eclipse.xtext.Action) Model(org.eclipse.xtext.testlanguages.optionalEmpty.Model) Parameter(org.eclipse.xtext.Parameter) EPackage(org.eclipse.emf.ecore.EPackage)

Example 2 with Greeting

use of org.eclipse.xtext.testlanguages.optionalEmpty.Greeting in project xtext-core by eclipse.

the class ModelImpl method basicSetChild.

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public NotificationChain basicSetChild(Greeting newChild, NotificationChain msgs) {
    Greeting oldChild = child;
    child = newChild;
    if (eNotificationRequired()) {
        ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, OptionalEmptyPackage.MODEL__CHILD, oldChild, newChild);
        if (msgs == null)
            msgs = notification;
        else
            msgs.add(notification);
    }
    return msgs;
}
Also used : Greeting(org.eclipse.xtext.testlanguages.optionalEmpty.Greeting) ENotificationImpl(org.eclipse.emf.ecore.impl.ENotificationImpl)

Aggregations

Greeting (org.eclipse.xtext.testlanguages.optionalEmpty.Greeting)2 EPackage (org.eclipse.emf.ecore.EPackage)1 ENotificationImpl (org.eclipse.emf.ecore.impl.ENotificationImpl)1 Action (org.eclipse.xtext.Action)1 Parameter (org.eclipse.xtext.Parameter)1 ParserRule (org.eclipse.xtext.ParserRule)1 Model (org.eclipse.xtext.testlanguages.optionalEmpty.Model)1