Advertisement
Guest User

Untitled

a guest
May 29th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <Button ... onAction="buttonAction" ... />
  2.  
  3. package my.package ;
  4.  
  5. public class MyControllerClass {
  6.  
  7. // ...
  8.  
  9. @FXML
  10. private void buttonAction() {
  11. // code to execute when button is fired
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement