Example usage for org.eclipse.jdt.internal.compiler.impl ITypeRequestor interface-usage

List of usage examples for org.eclipse.jdt.internal.compiler.impl ITypeRequestor interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.impl ITypeRequestor interface-usage.

Usage

From source file com.codenvy.ide.ext.java.server.internal.codeassist.impl.Engine.java

@SuppressWarnings("rawtypes")
public abstract class Engine implements ITypeRequestor {

    public LookupEnvironment lookupEnvironment;

    protected CompilationUnitScope unitScope;

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

public class MatchLocator implements ITypeRequestor {

    public static final int MAX_AT_ONCE;
    static {
        long maxMemory = Runtime.getRuntime().maxMemory();
        int ratio = (int) Math.round(((double) maxMemory) / (64 * 0x100000));

From source file org.eclipse.che.jdt.internal.codeassist.impl.Engine.java

@SuppressWarnings("rawtypes")
public abstract class Engine implements ITypeRequestor {

    public LookupEnvironment lookupEnvironment;

    protected CompilationUnitScope unitScope;

From source file org.eclipse.che.jdt.internal.core.search.indexing.SourceIndexer.java

/**
 * A SourceIndexer indexes java files using a java parser. The following items are indexed:
 * Declarations of:<br>
 * - Classes<br>
 * - Interfaces;<br>
 * - Methods;<br>

From source file org.eclipse.che.jdt.internal.core.search.matching.MatchLocator.java

@SuppressWarnings({ "rawtypes", "unchecked" })
public class MatchLocator implements ITypeRequestor {

    public static final int MAX_AT_ONCE;
    static {
        long maxMemory = Runtime.getRuntime().maxMemory();

From source file org.eclipse.jdt.internal.core.hierarchy.HierarchyResolver.java

public class HierarchyResolver implements ITypeRequestor {

    private ReferenceBinding focusType;
    private boolean superTypesOnly;
    private boolean hasMissingSuperClass;
    LookupEnvironment lookupEnvironment;

From source file org.eclipse.jdt.internal.core.search.matching.MatchLocator.java

public class MatchLocator implements ITypeRequestor {

    public static final int MAX_AT_ONCE;
    static {
        long maxMemory = Runtime.getRuntime().maxMemory();
        int ratio = (int) Math.round(((double) maxMemory) / (64 * 0x100000));

From source file org.nabucco.framework.mda.model.java.jdt.TypeRequestor.java

/**
 * TypeRequestor
 * 
 * @author Nicolas Moser, PRODYNA AG
 */
public class TypeRequestor implements ITypeRequestor {