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);