Example usage for org.eclipse.jdt.internal.core.builder ClasspathLocation cleanup

List of usage examples for org.eclipse.jdt.internal.core.builder ClasspathLocation cleanup

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core.builder ClasspathLocation cleanup.

Prototype

public void cleanup() 

Source Link

Usage

From source file:com.codenvy.ide.ext.java.server.internal.core.search.matching.JavaSearchNameEnvironment.java

License:Open Source License

public void cleanup() {
    for (ClasspathLocation location : this.locations) {
        location.cleanup();
    }
}

From source file:com.codenvy.ide.ext.java.server.internal.core.search.matching.JavaSearchNameEnvironment.java

License:Open Source License

/**
 * reset only source locations//from   w w w. j  a  v a2 s .c  om
 */
public void reset() {
    for (ClasspathLocation location : this.locations) {
        if (location instanceof ClasspathSourceDirectory)
            location.cleanup();
    }
}