Example usage for org.eclipse.jdt.internal.core.util Messages path_nullPath

List of usage examples for org.eclipse.jdt.internal.core.util Messages path_nullPath

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core.util Messages path_nullPath.

Prototype

String path_nullPath

To view the source code for org.eclipse.jdt.internal.core.util Messages path_nullPath.

Click Source Link

Usage

From source file:org.eclipse.jdt.internal.core.JavaProject.java

License:Open Source License

/**
 * @see IJavaProject//  www. j  av a  2 s .  co m
 */
public void setOutputLocation(IPath path, IProgressMonitor monitor) throws JavaModelException {
    if (path == null) {
        throw new IllegalArgumentException(Messages.path_nullPath);
    }
    if (path.equals(getOutputLocation())) {
        return;
    }
    setRawClasspath(getRawClasspath(), path, monitor);
}