Examples of matchesTool()


Examples of org.erlide.engine.model.root.ProjectConfigType.matchesTool()

    }

    private boolean validateBuildConfiguration(final IErlProject erlProject) {
        final ProjectConfigType config = erlProject.getConfigType();
        final BuilderTool tool = erlProject.getBuilderProperties().getBuilderTool();
        if (!config.matchesTool(tool)) {
            final String msg = String.format(
                    "Project's builder tool %s and configuration %s don't match", tool,
                    config);
            MarkerUtils.createProblemMarker(erlProject.getWorkspaceProject(), null, msg,
                    0, IMarker.SEVERITY_WARNING);
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.