Package org.acmestudio.acme.element

Examples of org.acmestudio.acme.element.IAcmeSystem


        tmp.delete();
      }
    }
   
    IAcmeModel model = resource.getModel();
    IAcmeSystem sys = model.getSystems().iterator().next();
   
    conf = new Configuration();
    conf.setName(sys.getName());
    if (sys.getDeclaredTypes().size() > 0) {
      IAcmeElementTypeRef<IAcmeSystemType> type = sys.getDeclaredTypes()
          .iterator().next();
      conf.setArchitecturalStyle(type.getReferencedName());
    }
    addProperties(conf, sys.getProperties());
    createConnectors(sys);

    for (IAcmeComponent acmeComp : sys.getComponents()) {
      createComponents(acmeComp, false, null, sys, null);
    }
   
    checkViolations(conf, resource, model);
View Full Code Here

TOP

Related Classes of org.acmestudio.acme.element.IAcmeSystem

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.