// them at the bottom
if (_expectedMethodBindings.size() > 0)
{
if (target instanceof IMethodSymbol)
{
final IMethodSymbol methodSymbol = (IMethodSymbol) target;
for (final Iterator it = _expectedMethodBindings.iterator();
it.hasNext();)
{
final String methodType = (String) it.next();
// we have a match, so push to the top
if (methodType.equals(methodSymbol.getSignature()))
{
return HIGH_RELEVANCE;
}
}