blob: 29b638fe6ec89ad5494273f5df5f0096645796e0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.ti.goals;
import org.eclipse.dltk.ti.IContext;
/**
* Task of this goal is to find all calls of the given method. Evaluator for
* this goal is registered by default and uses standard DLTK search. Cause
* without full type information it is impossible to get fully correct results,
* goal will send MethodCallVerificationGoals. So, to get them working user
* should register appropriate evaluator.
*
* Result of this goal is array of ItemReference objects
*/
public class MethodCallsGoal extends AbstractReferencesGoal {
public MethodCallsGoal(IContext context, String methodName,
String parentModelKey) {
super(context, methodName, parentModelKey);
}
}