public ErlProjectImport importProject(final String prefix,
final List<String> importSources) {
OtpErlangObject res = null;
try {
res = backend.call("erlide_import", "import", "sls", prefix, importSources);
return new ErlProjectImport(res);
} catch (final RpcException e) {
ErlLogger.warn(e);
}
return null;
}