University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GUIController.java 268B

1234567891011
  1. import javafx.event.ActionEvent;
  2. import javafx.fxml.FXML;
  3. import javafx.scene.text.Text;
  4. public class GUIController {
  5. @FXML Text actiontarget;
  6. @FXML protected void handleSubmitButton(ActionEvent event) {
  7. actiontarget.setText(actiontarget.getText()+" yay");
  8. }
  9. }