/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mytime.gui.controller; import java.net.URL; import java.util.ResourceBundle; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.fxml.Initializable; import javafx.scene.control.Button; /** * FXML Controller class * * @author Stefan-VpcEB3J1E */ public class ManagerGuildOneVolunteerController implements Initializable { @FXML private Button btnVolunteer; /** * Initializes the controller class. */ @Override public void initialize(URL url, ResourceBundle rb) { // TODO } /** * TO DO * @param event */ @FXML private void handleBtnVolunteerClick(ActionEvent event) { } }