Advertisement
Spirit13300

InscriptionControl.java

Jun 7th, 2018
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.74 KB | None | 0 0
  1. package fr.univ_amu.iut;
  2.  
  3. import javafx.fxml.FXML;
  4. import javafx.fxml.FXMLLoader;
  5. import javafx.fxml.Initializable;
  6. import javafx.scene.layout.GridPane;
  7. import javafx.scene.shape.Rectangle;
  8. import javafx.scene.text.Text;
  9.  
  10. import java.io.IOException;
  11. import java.net.URL;
  12. import java.util.ResourceBundle;
  13.  
  14. public class InscriptionController extends GridPane implements Initializable {
  15.     @FXML
  16.     private GridPane Grid;
  17.  
  18.     @FXML
  19.     private Rectangle menu;
  20.  
  21.     @FXML
  22.     private Rectangle banniere;
  23.  
  24.     @FXML
  25.     private Text banniereText;
  26.  
  27.     @FXML
  28.     private Text connexion;
  29.  
  30.     @FXML
  31.     private Text menu1;
  32.  
  33.     @FXML
  34.     private Text menu2;
  35.  
  36.     @FXML
  37.     private Text menu3;
  38.  
  39.     @FXML
  40.     private Text menu4;
  41.  
  42.     @FXML
  43.     private Text menu5;
  44.  
  45.     @FXML
  46.     private Text menu6;
  47.  
  48.     @FXML
  49.     private Text inscription1;
  50.     @FXML
  51.     private Text inscriptionNom;
  52.     @FXML
  53.     private Text inscriptionPrenom;
  54.     @FXML
  55.     private Text inscriptionUtilisateur;
  56.     @FXML
  57.     private Text inscriptionConfPass;
  58.     @FXML
  59.     private Text inscriptionPass;
  60.     @FXML
  61.     private Text inscriptionEmail;
  62.     @FXML
  63.     private Text inscriptionGenre;
  64.     @FXML
  65.     private Text inscriptionPro;
  66.     @FXML
  67.     private Text inscriptionDate;
  68.  
  69.     public InscriptionController() {
  70.         FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("InscriptionView.fxml"));
  71.         fxmlLoader.setRoot(this);
  72.         fxmlLoader.setController(this);
  73.  
  74.         try {
  75.             fxmlLoader.load();
  76.         } catch (IOException exception) {
  77.             throw new RuntimeException(exception);
  78.         }
  79.     }
  80.  
  81.     @Override
  82.     public void initialize(URL location, ResourceBundle resources) {
  83.     }
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement