Example usage for org.eclipse.jdt.core.search SearchRequestor subclass-usage

List of usage examples for org.eclipse.jdt.core.search SearchRequestor subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.search SearchRequestor subclass-usage.

Usage

From source file de.loskutov.dh.search.AbstractReferencesRequestor.java

public abstract class AbstractReferencesRequestor<V extends IJavaElement> extends SearchRequestor {
    private volatile boolean isDone;

    /**
     * List is used, may be later we will allow duplicated elements?
     */

From source file net.hillsdon.testlink.model.impl.ResourceCollector.java

/**
 * Collects the paths that are the result of a type search.
 */
class ResourceCollector extends SearchRequestor {

    private Set<IResource> _collectedPaths = new LinkedHashSet<IResource>();

From source file org.eclim.plugin.jdt.command.search.ImplementorsSearchRequestor.java

/**
 * SearchRequestor used to accept only method implemenations.
 *
 * See org.eclipse.jdt.internal.ui.javaeditor.JavaElementImplementationHyperlink
 * for other possible ways in which implementors may be searched for.
 *

From source file org.eclim.plugin.jdt.command.search.SearchRequestor.java

/**
 * Extension to SearchRequestor that adds getMatches().
 *
 * @author Eric Van Dewoestine
 */
public class SearchRequestor extends org.eclipse.jdt.core.search.SearchRequestor {

From source file org.eclipse.che.plugin.java.testing.AnnotationSearchRequestor.java

/** Request for searching test classes. */
public class AnnotationSearchRequestor extends SearchRequestor {

    private final Collection<IType> fResult;
    private final ITypeHierarchy fHierarchy;

From source file org.eclipse.jst.jsf.core.jsfappconfig.AnnotationSearchRequestor.java

/**
 * SearchRequestor that looks at annotations for JSF configuration.
 * 
 * <p><b>Provisional API - subject to change</b></p>
 * 
 * @author Andrew McCulloch - Oracle

From source file org.eclipse.jst.jsp.ui.internal.java.refactoring.BasicRefactorSearchRequestor.java

/**
 * <p>After a search is run with this {@link SearchRequestor} {@link #getChanges(RefactoringParticipant)}
 * can be called to get any new {@link Change}s that need to be created as a result of the search.  If
 * {@link Change}s are already existing for the documents found then new {@link Change}s will not be
 * created for them, but the needed {@link TextEdit}s will be added to the existing {@link Change}s.</p>
 */

From source file org.eclipse.jst.jsp.ui.internal.java.search.BasicJSPSearchRequestor.java

/**
 * Accepts matches from JSPSearchSupport.search(...) request.
 * Adapts the results from java to JSP and displays in the SearchResultView.
 * 
 * @author pavery
 */

From source file org.eclipse.objectteams.otdt.core.search.OTSearchRequestor.java

/**
 * @author brcan
 * $Id: OTSearchRequestor.java 23416 2010-02-03 19:59:31Z stephan $
 */
public class OTSearchRequestor extends SearchRequestor {
    private ArrayList<IOTType> otTypes = null;

From source file org.fusesource.ide.camel.editor.globalconfiguration.beans.CountingSearchRequestor.java

/**
 * @author brianf
 *
 */
class CountingSearchRequestor extends SearchRequestor {
    private int numMatch;