All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jdt.core.search.MethodNameMatchRequestor Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2015 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.core.search;

import org.eclipse.core.runtime.IProgressMonitor;

/**
 * A MethodNameMatchRequestor collects matches from a searchAllMethodNames
 * query to a SearchEngine. Clients must subclass this abstract class and pass an instance to the
 * {@link SearchEngine#searchAllMethodNames(
 * char[] packageName,
 * int pkgMatchRule,
 * char[] declaringQualification,
 * int declQualificationMatchRule,
 * char[] delcaringSimpleName,
 * int declSimpleNameMatchRule,
 * char[] methodName,
 * int methodMatchRule,
 * IJavaSearchScope scope,
 * MethodNameMatchRequestor methodRequestor,
 * int waitingPolicy,
 * IProgressMonitor progressMonitor)} method.
 * 

* While {@link MethodNameRequestor} only reports method names information (e.g. package, enclosing types, method name, modifiers, etc.), * this class reports {@link MethodNameMatch} objects instead, which store this information and can return * an {@link org.eclipse.jdt.core.IMethod} handle. *

*

* This class may be subclassed by clients. *

* @see MethodNameMatch * @see MethodNameRequestor * * @since 3.12 */ public abstract class MethodNameMatchRequestor { /** * Accepts a method name match ({@link MethodNameMatch}) which contains a method * information as package name, enclosing types names, method name, modifiers, etc. * * @param match the match which contains all method information */ public abstract void acceptMethodNameMatch(MethodNameMatch match); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy