Example usage for org.eclipse.jdt.internal.core.search.indexing IIndexConstants interface-usage

List of usage examples for org.eclipse.jdt.internal.core.search.indexing IIndexConstants interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core.search.indexing IIndexConstants interface-usage.

Usage

From source file com.codenvy.ide.ext.java.server.internal.core.search.indexing.AbstractIndexer.java

public abstract class AbstractIndexer implements IIndexConstants {

    SearchDocument document;

    public AbstractIndexer(SearchDocument document) {
        this.document = document;

From source file com.codenvy.ide.ext.java.server.internal.core.search.indexing.IndexManager.java

public class IndexManager extends JobManager implements IIndexConstants {

    public static final Integer SAVED_STATE = new Integer(0);
    public static final Integer UPDATING_STATE = new Integer(1);
    public static final Integer UNKNOWN_STATE = new Integer(2);
    public static final Integer REBUILDING_STATE = new Integer(3);

From source file com.codenvy.ide.ext.java.server.internal.core.search.indexing.SourceIndexerRequestor.java

/**
 * This class is used by the JavaParserIndexer. When parsing the java file, the requestor
 * recognizes the java elements (methods, fields, ...) and add them to an index.
 */
public class SourceIndexerRequestor implements ISourceElementRequestor, IIndexConstants {
    SourceIndexer indexer;

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

public class ClassFileMatchLocator implements IIndexConstants {

    private static final long TARGET_ANNOTATION_BITS = TagBits.AnnotationForType | TagBits.AnnotationForParameter
            | TagBits.AnnotationForPackage | TagBits.AnnotationForMethod | TagBits.AnnotationForLocalVariable
            | TagBits.AnnotationForField | TagBits.AnnotationForConstructor | TagBits.AnnotationForAnnotationType;
    private static final char[] JAVA_LANG_ANNOTATION_ELEMENTTYPE = CharOperation

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

public class JavaSearchPattern extends SearchPattern implements IIndexConstants {

    /*
     * Whether this pattern is case sensitive.
     */
    boolean isCaseSensitive;

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

public class OrPattern extends SearchPattern implements IIndexConstants {

    protected SearchPattern[] patterns;

    /**
     * One of {@link #R_ERASURE_MATCH}, {@link #R_EQUIVALENT_MATCH}, {@link #R_FULL_MATCH}.

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

public abstract class PatternLocator implements IIndexConstants {

    // store pattern info
    protected int matchMode;
    protected boolean isCaseSensitive;
    protected boolean isEquivalentMatch;

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

public abstract class AbstractIndexer implements IIndexConstants {

    SearchDocument document;

    public AbstractIndexer(SearchDocument document) {
        this.document = document;

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

public class IndexManager extends JobManager implements IIndexConstants {

    public static final Integer SAVED_STATE = new Integer(0);
    public static final Integer UPDATING_STATE = new Integer(1);
    public static final Integer UNKNOWN_STATE = new Integer(2);
    public static final Integer REBUILDING_STATE = new Integer(3);

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

/**
 * This class is used by the JavaParserIndexer. When parsing the java file, the requestor
 * recognizes the java elements (methods, fields, ...) and add them to an index.
 */
public class SourceIndexerRequestor implements ISourceElementRequestor, IIndexConstants {
    SourceIndexer indexer;