Example usage for org.eclipse.jdt.internal.compiler ISourceElementRequestor interface-usage

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

Introduction

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

Usage

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

/**
 * A requestor for the fuzzy parser, used to compute the children of an ICompilationUnit.
 */
@SuppressWarnings({ "rawtypes", "unchecked" })
public class CompilationUnitStructureRequestor extends ReferenceInfoAdapter implements ISourceElementRequestor {

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.SourceMapper.java

/**
 * A SourceMapper maps source code in a ZIP file to binary types in
 * a JAR. The SourceMapper uses the fuzzy parser to identify source
 * fragments in a .java file, and attempts to match the source code
 * with children in a binary type. A SourceMapper is associated
 * with a JarPackageFragment by an AttachSourceOperation.

From source file org.eclipse.ajdt.core.parserbridge.AJCompilationUnitProblemFinder.java

class NullRequestor extends AJCompilationUnitStructureRequestor
        implements ISourceElementRequestor, IAspectSourceElementRequestor {

    public NullRequestor() {
        super(null, null, null);
    }

From source file org.eclipse.che.jdt.internal.core.CompilationUnitStructureRequestor.java

/**
 * A requestor for the fuzzy parser, used to compute the children of an ICompilationUnit.
 */
@SuppressWarnings({ "rawtypes", "unchecked" })
public class CompilationUnitStructureRequestor extends ReferenceInfoAdapter implements ISourceElementRequestor {

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;

From source file org.eclipse.che.jdt.internal.core.SourceMapper.java

/**
 * A SourceMapper maps source code in a ZIP file to binary types in
 * a JAR. The SourceMapper uses the fuzzy parser to identify source
 * fragments in a .java file, and attempts to match the source code
 * with children in a binary type. A SourceMapper is associated
 * with a JarPackageFragment by an AttachSourceOperation.

From source file org.eclipse.jdt.internal.core.SourceMapper.java

/**
 * A SourceMapper maps source code in a ZIP file to binary types in
 * a JAR. The SourceMapper uses the fuzzy parser to identify source
 * fragments in a .java file, and attempts to match the source code
 * with children in a binary type. A SourceMapper is associated
 * with a JarPackageFragment by an AttachSourceOperation.

From source file org.eclipse.objectteams.otdt.tests.compiler.smap.AbstractSourceMapGeneratorTest.java

/**
 * @author ike
 */
public abstract class AbstractSourceMapGeneratorTest extends FileBasedModelTest
        implements ICallbackClient, ISourceElementRequestor {

From source file org.eclipse.objectteams.otdt.tests.compiler.SourceElementRequestorTest.java

/**
 * @author haebor/mkr
 * @version $Id: SourceElementRequestorTest.java 23494 2010-02-05 23:06:44Z stephan $
 */
public class SourceElementRequestorTest extends FileBasedModelTest implements ISourceElementRequestor {
    private char[] source;