List of usage examples for org.eclipse.jdt.internal.core.builder ClasspathLocation cleanup
public void cleanup()
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(); } }