University stuff.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }