Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class Controller {
  2.  
  3. @FXML
  4. public void initialize() {
  5. autoCompleteTextField.setCompleter(input -> {
  6. List<String[]> places = googlePlaces.predictPlaces(input);
  7. // ...
  8. });
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement