blob: 09519d2c62d346fb1ed5a9c9c107c7efa9563ec2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.dltk.internal.core.search.matching;
import org.eclipse.dltk.ast.references.Reference;
import org.eclipse.dltk.ast.references.SimpleReference;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.dltk.core.search.SearchMatch;
import org.eclipse.dltk.core.search.matching.PatternLocator;
public class TypeReferenceLocator extends PatternLocator {
protected TypeReferencePattern pattern;
protected boolean isDeclarationOfReferencedTypesPattern;
public TypeReferenceLocator(TypeReferencePattern pattern) {
super(pattern);
this.pattern = pattern;
this.isDeclarationOfReferencedTypesPattern = this.pattern instanceof DeclarationOfReferencedTypesPattern;
}
protected IModelElement findElement(IModelElement element, int accuracy) {
// need exact match to be able to open on type ref
if (accuracy != SearchMatch.A_ACCURATE)
return null;
// element that references the type must be included in the enclosing
// element
DeclarationOfReferencedTypesPattern declPattern = (DeclarationOfReferencedTypesPattern) this.pattern;
while (element != null && !declPattern.enclosingElement.equals(element))
element = element.getParent();
return element;
}
public int match(Reference node, MatchingNodeSet nodeSet) { // interested in NameReference & its subtypes
if (!(node instanceof SimpleReference)) return IMPOSSIBLE_MATCH;
if (this.pattern.simpleName == null)
return nodeSet.addMatch(node, POSSIBLE_MATCH);
if (matchesName(this.pattern.simpleName, ((SimpleReference) node).getName().toCharArray()))
return nodeSet.addMatch(node, ACCURATE_MATCH);
return IMPOSSIBLE_MATCH;
}
protected int referenceType() {
return IModelElement.TYPE;
}
public String toString() {
return "Locator for " + this.pattern.toString(); //$NON-NLS-1$
}
}