Examples of ErlProjectImport


Examples of org.erlide.engine.services.importer.ErlProjectImport

    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;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.