private Collection<IJavaCompletionProposal> getCorrections(IInvocationContext context, IProblemLocation location) {
if (MissingPathVariableWarning.MARKER_TYPE.equals(location.getMarkerType())) {
AssistContext assistContext = new AssistContext(context.getCompilationUnit(), null, location.getOffset(),
location.getLength());
ASTNode node = assistContext.getCoveringNode();
return new PathVariableAnnotationQuickAssistProcessor().getAssists(node, assistContext);
}
return EMPTY_RESULT;
}