blob: b587710ca89f73bcc6ffd795d58e32541b692e35 [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 references to the given field or variable.
* 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 FieldPositionVerificationGoals. So, to get
* them working user should register appropriate evaluator.
*
* Result of this goal is array of ItemReference objects
*/
public class FieldReferencesGoal extends AbstractReferencesGoal {
public FieldReferencesGoal(IContext context, String name, String parentKey) {
super(context, name, parentKey);
}
}