Package no.hal.jex.jextest.jexTest

Examples of no.hal.jex.jextest.jexTest.TransitionEffect


   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetEffect(TransitionEffect newEffect, NotificationChain msgs)
  {
    TransitionEffect oldEffect = effect;
    effect = newEffect;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, JexTestPackage.TRANSITION__EFFECT, oldEffect, newEffect);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here


                      JvmOperation _inferTestHelperMethod = JexTestJvmModelInferrer.this.inferTestHelperMethod(sequence_1, "_transition_exprAction_times_", action, _times_1, null);
                      JexTestJvmModelInferrer.this._jvmTypesBuilder.<JvmOperation>operator_add(_members_7, _inferTestHelperMethod);
                    }
                  }
                }
                TransitionEffect _effect = transition.getEffect();
                if ((_effect instanceof TransitionTargetEffect)) {
                  TransitionEffect _effect_1 = transition.getEffect();
                  final TransitionTargetEffect targetEffect = ((TransitionTargetEffect) _effect_1);
                  State _state_2 = targetEffect.getState();
                  boolean _notEquals_5 = (!Objects.equal(_state_2, null));
                  if (_notEquals_5) {
                    State _state_3 = targetEffect.getState();
View Full Code Here

      State _state = _source_1.getState();
      TransitionSource _source_2 = transition.getSource();
      State _stateRef = _source_2.getStateRef();
      this.generateStateTesterCall(_state, _stateRef, appendable);
    }
    TransitionEffect _effect = transition.getEffect();
    this.generateTransitionActionsEffect(_effect, transition, appendable);
  }
View Full Code Here

      this.generateTransitionAction(action, transition, appendable);
    }
  }
 
  protected void _generateTransitionActionsEffect(final TransitionExceptionEffect effect, final Transition transition, final ITreeAppendable appendable) {
    TransitionEffect _effect = transition.getEffect();
    if ((_effect instanceof TransitionExceptionEffect)) {
      ITreeAppendable _append = appendable.append("try {");
      ITreeAppendable _increaseIndentation = _append.increaseIndentation();
      _increaseIndentation.newLine();
    }
    this._generateTransitionActionsEffect(((TransitionEffect) effect), transition, appendable);
    TransitionEffect _effect_1 = transition.getEffect();
    if ((_effect_1 instanceof TransitionExceptionEffect)) {
      TransitionEffect _effect_2 = transition.getEffect();
      final JvmParameterizedTypeReference exceptionClass = ((TransitionExceptionEffect) _effect_2).getExceptionClass();
      String _qualifiedName = exceptionClass.getQualifiedName();
      final String exceptionClassName = this._util.removeJavaLang(_qualifiedName);
      StringConcatenation _builder = new StringConcatenation();
      _builder.append(exceptionClassName, "");
View Full Code Here

TOP

Related Classes of no.hal.jex.jextest.jexTest.TransitionEffect

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.