private boolean updateSuggestion(AutocompletionEngine service, Popup popup, ListView<Suggest> listView) {
List<Suggest> autocompleteList = buildAutocompleteFromPosition(service);
if (!autocompleteList.isEmpty()) {
listView.getItems().setAll(autocompleteList);
listView.getSelectionModel().select(0);
return true;
}
popup.hide();
return false;
}
CodeAreaBuilder.java 文件源码
java
阅读 21
收藏 0
点赞 0
评论 0
项目:mongofx
作者:
评论列表
文章目录