Package org.acmestudio.acme.element.representation

Examples of org.acmestudio.acme.element.representation.IAcmeRepresentation


      IAcmeSystem system, IAcmeSystem parentSystem) {

    // pull subcomponents in representations out
    if (acmeComp.getRepresentations() != null
        && acmeComp.getRepresentations().size() > 0) {
      IAcmeRepresentation rep = acmeComp.getRepresentations().iterator()
          .next();
      Set<? extends IAcmeComponent> subComponents = rep.getSystem()
          .getComponents();
      if (subComponents != null && subComponents.size() > 0) {
        // The connectors from the subsystem
        // must be created in the super-system, too
        createConnectors(rep.getSystem());

        for (IAcmeComponent acmeSubComp : subComponents) {
          createComponents(acmeSubComp, true, rep, rep.getSystem(),
              system);
        }
        return;
      }
    }
View Full Code Here

TOP

Related Classes of org.acmestudio.acme.element.representation.IAcmeRepresentation

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.