Package no.hal.jex.jextest.jexTest

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


   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetSource(TransitionSource newSource, NotificationChain msgs)
  {
    TransitionSource oldSource = source;
    source = newSource;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, JexTestPackage.TRANSITION__SOURCE, oldSource, newSource);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here


            }
            EList<Transition> _transitions = sequence_1.getTransitions();
            for (final Transition transition : _transitions) {
              {
                boolean _and = false;
                TransitionSource _source = transition.getSource();
                boolean _notEquals_3 = (!Objects.equal(_source, null));
                if (!_notEquals_3) {
                  _and = false;
                } else {
                  TransitionSource _source_1 = transition.getSource();
                  State _state = _source_1.getState();
                  boolean _notEquals_4 = (!Objects.equal(_state, null));
                  _and = (_notEquals_3 && _notEquals_4);
                }
                if (_and) {
                  TransitionSource _source_2 = transition.getSource();
                  State _state_1 = _source_2.getState();
                  JexTestJvmModelInferrer.this.inferStateTestMethods(sequence_1, _state_1, jvmClass);
                }
                EList<TransitionAction> _actions = transition.getActions();
                Iterable<TransitionExpressionAction> _filter = Iterables.<TransitionExpressionAction>filter(_actions, TransitionExpressionAction.class);
                for (final TransitionExpressionAction action : _filter) {
View Full Code Here

    }
    return _xblockexpression;
  }
 
  public void generateTransition(final Transition transition, final ITreeAppendable appendable) {
    TransitionSource _source = transition.getSource();
    boolean _notEquals = (!Objects.equal(_source, null));
    if (_notEquals) {
      TransitionSource _source_1 = transition.getSource();
      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

TOP

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

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.