Package org.eclipse.papyrus.sysml.portandflows

Examples of org.eclipse.papyrus.sysml.portandflows.FlowSpecification


        result = defaultCase(theEObject);
      return result;
    }
    case PortandflowsPackage.FLOW_SPECIFICATION:
    {
      FlowSpecification flowSpecification = (FlowSpecification)theEObject;
      T result = caseFlowSpecification(flowSpecification);
      if(result == null)
        result = defaultCase(theEObject);
      return result;
    }
View Full Code Here


   * @generated NOT
   */
  public boolean isAtomic() {
    // The FlowPort is Atomic if it is not typed by a FlowSpecification
    Boolean isAtomic = true;
    FlowSpecification flowSpec = null;

    if(getBase_Port() != null) {
      // Find FlowPort type
      Type type = getBase_Port().getType();
      if((type != null) && (type instanceof Interface)) {
View Full Code Here

TOP

Related Classes of org.eclipse.papyrus.sysml.portandflows.FlowSpecification

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.