Package org.springframework.ide.eclipse.config.ui.editors.webflow.graph.model

Source Code of org.springframework.ide.eclipse.config.ui.editors.webflow.graph.model.DecisionStateModelElement

/*******************************************************************************
*  Copyright (c) 2012 VMware, Inc.
*  All rights reserved. This program and the accompanying materials
*  are made available under the terms of the Eclipse Public License v1.0
*  which accompanies this distribution, and is available at
*  http://www.eclipse.org/legal/epl-v10.html
*
*  Contributors:
*      VMware, Inc. - initial API and implementation
*******************************************************************************/
package org.springframework.ide.eclipse.config.ui.editors.webflow.graph.model;

import java.util.List;

import org.eclipse.wst.xml.core.internal.provisional.document.IDOMElement;
import org.springframework.ide.eclipse.config.core.schemas.WebFlowSchemaConstants;
import org.springframework.ide.eclipse.config.graph.model.AbstractConfigGraphDiagram;
import org.springframework.ide.eclipse.config.graph.model.Activity;
import org.springframework.ide.eclipse.config.graph.model.ParallelActivity;
import org.springframework.ide.eclipse.config.graph.model.Transition;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;


/**
* @author Leo Dos Santos
*/
@SuppressWarnings("restriction")
public class DecisionStateModelElement extends AbstractStateModelElement {

  public DecisionStateModelElement() {
    super();
  }

  public DecisionStateModelElement(IDOMElement input, AbstractConfigGraphDiagram diagram) {
    super(input, diagram);
  }

  @Override
  public String getInputName() {
    return WebFlowSchemaConstants.ELEM_DECISION_STATE;
  }

  @Override
  protected List<Transition> getOutgoingTransitionsFromXml() {
    List<Transition> list = super.getOutgoingTransitionsFromXml();
    List<Activity> registry = getDiagram().getModelRegistry();
    NodeList transitions = getInput().getChildNodes();
    for (int i = 0; i < transitions.getLength(); i++) {
      Node node = transitions.item(i);
      if (node instanceof IDOMElement && node.getLocalName().equals(WebFlowSchemaConstants.ELEM_IF)) {
        IDOMElement transition = (IDOMElement) node;
        String state = transition.getAttribute(WebFlowSchemaConstants.ATTR_THEN);
        if (state != null && state.trim().length() > 0) {
          Node stateRef = getDiagram().getReferencedNode(state);
          if (stateRef instanceof IDOMElement) {
            for (Activity activity : registry) {
              if (!(activity instanceof ParallelActivity) && activity.getInput().equals(stateRef)) {
                Transition trans = new IfThenTransition(this, activity, transition);
                list.add(trans);
              }
            }
          }
        }
        state = transition.getAttribute(WebFlowSchemaConstants.ATTR_ELSE);
        if (state != null && state.trim().length() > 0) {
          Node stateRef = getDiagram().getReferencedNode(state);
          if (stateRef instanceof IDOMElement) {
            for (Activity activity : registry) {
              if (!(activity instanceof ParallelActivity) && activity.getInput().equals(stateRef)) {
                Transition trans = new IfElseTransition(this, activity, transition);
                list.add(trans);
              }
            }
          }
        }
      }
    }
    return list;
  }

}
TOP

Related Classes of org.springframework.ide.eclipse.config.ui.editors.webflow.graph.model.DecisionStateModelElement

TOP
Copyright © 2018 www.massapi.com. 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.