Package org.watermint.sourcecolon.org.opensolaris.opengrok.util

Examples of org.watermint.sourcecolon.org.opensolaris.opengrok.util.Executor.exec()


    public boolean validateExuberantCtags() {
        if (exuberantCtagsAvailable != null) {
            return exuberantCtagsAvailable;
        }
        Executor executor = new Executor(new String[]{getCtags(), "--version"});
        executor.exec(false);
        String output = executor.getOutputString();

        exuberantCtagsAvailable = !(output == null || !output.contains("Exuberant Ctags"));

        return exuberantCtagsAvailable;
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.