Package archmapper.main.model.stylemapping

Examples of archmapper.main.model.stylemapping.InterfaceType


    String pkg = mappingHelper.getPackageOfImplementationArtifact(intDef);
    List<String> superInterfaces = intDef.getSuperInterface();
   
   
    if (typeMapping != null) {
      InterfaceType intType = typeMapping.getInterfaceType(intDef.getType());
      if (intType != null) {
        superInterfaces.addAll(intType.getSuperInterface());
      }
    }
   
    CodeGenerationHelper.createInterface(pkg, intDef.getInterfaceName(),
        superInterfaces, javaProject);
View Full Code Here

TOP

Related Classes of archmapper.main.model.stylemapping.InterfaceType

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.