return false; // all contexts are assumed string, unless otherwise stated
}
public List<String> getParameters(String context, String filter) {
if (getParameterizedContexts().contains(context) == false) {
throw new SearchExpressionException("context[" + context
+ "] is not parameterized, no completions available");
}
return Collections.emptyList();
}