}
return hierarchyContainsComponent(type);
}
}
if ((javaElement instanceof ResolvedBinaryMethod)) {
final ResolvedBinaryMethod method = (ResolvedBinaryMethod) javaElement;
if ("V;".equals(method.getReturnType())) {
return true;
}
final IType type = method.getDeclaringType();
if (type != null) {
if (type.getFullyQualifiedName().equals(TypeHelper.COMPONENT)) {
return true;
}
return hierarchyContainsComponent(type);