Package org.erlide.core.executor.ToolExecutor

Examples of org.erlide.core.executor.ToolExecutor.ToolResults


                    if (DEBUG) {
                        System.out.println("??? " + line);
                    }
                }
            };
            final ToolResults result = ex.run(getOsCommand(erlProject),
                    getCompileTarget(), project.getLocation().toPortableString(),
                    callback, notifier);

            if (result == null || result.isCommandNotFound()) {
                MarkerUtils.createProblemMarker(project, null,
                        "Builder command not found: " + getOsCommand(erlProject), 0,
                        IMarker.SEVERITY_ERROR);
            } else {
                final boolean noMarkersOnProject = project.findMarkers(IMarker.PROBLEM,
View Full Code Here

TOP

Related Classes of org.erlide.core.executor.ToolExecutor.ToolResults

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.