* content assist is available.
* @param large if <code>true</code>, make the content assist large in height
* @return Pair
*/
public static Pair<SimpleContentProposalProvider, ContentProposalAdapter> hookAutoComplete(final Text text, Collection<String> values, boolean decorate, boolean large) {
return hookAutoComplete(text, new ContentAssistAdapter(text, ' ', false), values, decorate, large);
}