Example usage for org.eclipse.jdt.internal.core.builder ClasspathLocation subclass-usage

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

Introduction

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

Usage

From source file com.codenvy.ide.ext.java.server.internal.core.builder.CodenvyClasspathLocation.java

public abstract class CodenvyClasspathLocation extends org.eclipse.jdt.internal.core.builder.ClasspathLocation {

    public abstract void findPackages(String[] pkgName, ISearchRequestor requestor);

}

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

public class ClasspathSourceDirectory extends ClasspathLocation {

    File sourceFolder;
    SimpleLookupTable directoryCache;
    SimpleLookupTable missingPackageHolder = new SimpleLookupTable();
    char[][] fullExclusionPatternChars;

From source file org.eclipse.che.jdt.internal.core.builder.CodenvyClasspathLocation.java

public abstract class CodenvyClasspathLocation extends org.eclipse.jdt.internal.core.builder.ClasspathLocation {

    public abstract void findPackages(String[] pkgName, ISearchRequestor requestor);

}