IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaFX Discussion :

tableview avec une requête SQl de jointure de quatre table


Sujet :

JavaFX

  1. #1
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut tableview avec une requête SQl de jointure de quatre table
    je veux remplire une tableView avec une requête de jointure mais je sais pas comment si prendre.

    voila mes déclaration:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
     
    @FXML
        private TableView<?> alletu;
        @FXML
        private TableColumn<Etudiant, String> nom;
        @FXML
        private TableColumn<Etudiant, String> prenom;
        @FXML
        private TableColumn<Filiere, String> filiere;
        @FXML
        private TableColumn<Cours, String> cours;
        @FXML
        private TableColumn<Semmestre, String> semmestre;
        @FXML
        private TableColumn<Notes, Double> devoire1;
        @FXML
        private TableColumn<Notes, Double> devoir2;
        @FXML
        private TableColumn<Notes, Double> examen;
        @FXML
        private TableColumn<Notes, String> annne;
    voila ma methode de requête:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
     
    public List<Object[]> allEtu() {
     
                EntityManager em1 = fab.createEntityManager();//creation d'une methode de type list pour recuperer la liste des etudiant
     
                String query; 
                query = " SELECT e.nometu,e.prenometu,f.nomfil, c.codecours,s.nomsem,n.devoire1,n.devoire2,n.examen,\n" +
                        "an.annescolaire\n" +
                        "FROM Cours c,Notes n, Etudiant e,Annscolaire an,Semmestre s,Filiere f\n" +
                        "WHERE e.idetu = notes.idetu\n" +
                        "AND c.idcours = n.idcours\n" +
                        "AND s.idsem = c.idsem \n" +
                        "AND an.idAnne = n.annesco\n" +
                        "AND e.idfil=f.idfil\n" +
                        "GROUP BY e.nometu,e.idetu, c.codecours,s.nomsem,an.annescolaire";
                Query  q;
                q = em1.createQuery(query);
     
                return   (List<Object[]>)q.getResultList();
          }

    maintenant je ne sais plus vraiment quoi faire svp aidez moi

  2. #2
    Rédacteur/Modérateur

    Avatar de bouye
    Homme Profil pro
    Information Technologies Specialist (Scientific Computing)
    Inscrit en
    Août 2005
    Messages
    6 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : Nouvelle-Calédonie

    Informations professionnelles :
    Activité : Information Technologies Specialist (Scientific Computing)
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Août 2005
    Messages : 6 840
    Points : 22 854
    Points
    22 854
    Billets dans le blog
    51
    Par défaut
    Tes colonnes ont des types étranges.... le 1er type d'une TableColumn c'est le type des objets qui sont contenue dans chaque ligne de la table. Le second type c'est le type de la valeur dans la colonne. Donc en gros ça serait plutôt qq chose comme ça étant donne que ta méthode allEtu() retourne une List<Object[]> :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    @FXML
    private TableView<Object[]> alletu;
    @FXML
    private TableColumn<Object[], Etudiant> nom;
    [...]
    final List<Object[]> values = allEtu();
    allEtu.getItems().setAll(values);
    A ce moment chacune des lignes de la table est un tuple Object[]. PS : le JDK 14 introduira le type read-only Record en preview pour faire de genre de choses.
    Ensuite pour chaque colonne il faut faire une vue sur la données.
    Note : j'ai mis des indices au pif et j'ai detaille sur plusieurs lignes.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    nom.setCellValueFactory(feature -> {
        final Object[] value = feature.getValue();
        final Etudiant student = (Etudiant)value[0];
        return new SimpleObjectProperty<>(student);
    });
    Et une fois qu'on a bien notre étudiant dans la colonne alors on peut se pencher sur l'affichage :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    nom.setCellFactory(tv -> new TableCell<Etudiant>() {
        @Override
        public void updateItem(final Etudiant value, final boolean empty) {
            super.updateItem(value, empty);
            String text = null;
            if (!empty && value != null) { 
                text = value.getName();
            }
            setText(text);
        }
    });
    Merci de penser au tag quand une réponse a été apportée à votre question. Aucune réponse ne sera donnée à des messages privés portant sur des questions d'ordre technique. Les forums sont là pour que vous y postiez publiquement vos problèmes.

    suivez mon blog sur Développez.

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. ~ Rich Cook

  3. #3
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    Merci beaucoup je test et je vous fait un retour!!!

  4. #4
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    je ne sais pas si c'est moi qui ai mal fait mais j'ai des erreurs que je ne comprends pas!!!!

    tout d'abord mon fichier xml:
    Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    <AnchorPane id="AnchorPane" prefHeight="562.0" prefWidth="755.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/11.0.1" fx:controller="controller.TableController">
       <children>
          <TableView fx:id="alletu" layoutX="16.0" layoutY="88.0" minWidth="0.0" prefHeight="408.0" prefWidth="751.0">
             <columns>
                <TableColumn fx:id="nom" prefWidth="106.0" text="Nom " />
                <TableColumn fx:id="prenom" prefWidth="103.0" text="Prenom" />
                <TableColumn fx:id="filiere" prefWidth="75.0" text="Filère" />
                <TableColumn fx:id="cours" prefWidth="60.0" text="Cours" />
                <TableColumn fx:id="semmestre" prefWidth="75.0" text="Semmestre" />
                <TableColumn prefWidth="306.0" text="Notes">
                   <columns>
                      <TableColumn fx:id="devoire1" prefWidth="75.0" text="Devoir1" />
                      <TableColumn fx:id="devoir2" prefWidth="75.0" text="Devoir2" />
                      <TableColumn fx:id="examen" prefWidth="63.0" text="Examen" />
                   </columns>
                </TableColumn>
                <TableColumn fx:id="annne" prefWidth="118.0" text="Année Scolaire" />
             </columns>
          </TableView>
       </children>
    </AnchorPane>

    ensuite les déclarations:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
     @FXML
        private TableColumn<Object[], Etudiant> nom;
        @FXML
        private TableColumn<Object[], Etudiant> prenom;
        @FXML
        private TableColumn<Object[], Filiere> filiere;
        @FXML
        private TableColumn<Object[], Cours> cours;
        @FXML
        private TableColumn<Object[], Semmestre> semmestre;
        @FXML
        private TableColumn<Object[], Notes> devoire1;
        @FXML
        private TableColumn<Object[], Notes> devoir2;
        @FXML
        private TableColumn<Object[], Notes> examen;
        @FXML
        private TableColumn<Object[], Annscolaire> annne;
        @FXML
        private TableView<Object[]> alletu;
    et dans la methode initialize :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
           Requette al = new Requette();//création d'un objet de la classe requete
            final List<Object[]> values = al.allEtu();
            alletu.getItems().setAll(values);
     
            nom.setCellValueFactory(feature -> {
                final Object[] value = feature.getValue();
                final Etudiant student = (Etudiant) value[0];
                return new SimpleObjectProperty(student);
            });
            prenom.setCellValueFactory(feature
                    -> {
     
                final Object[] value = feature.getValue();
                final Etudiant studentname = (Etudiant) value[1];
                return new SimpleObjectProperty(studentname);
            });
            filiere.setCellValueFactory(feature
                    -> {
     
                final Object[] value = feature.getValue();
                final Filiere fil = (Filiere) value[2];
                return new SimpleObjectProperty(fil);
            });
            cours.setCellValueFactory((TableColumn.CellDataFeatures<Object[], Cours> feature) -> {
                final Object[] value = feature.getValue();
                final Cours cours1 = (Cours) value[3];
                return new SimpleObjectProperty(cours1);
            });
            semmestre.setCellValueFactory(feature
                    -> {
     
                final Object[] value = feature.getValue();
                final Semmestre semestre = (Semmestre) value[4];
                return new SimpleObjectProperty(semestre);
            });
            devoire1.setCellValueFactory(feature
                    -> {
     
                final Object[] value = feature.getValue();
                final Notes notes = (Notes) value[5];
                return new SimpleObjectProperty(notes);
            });
            devoir2.setCellValueFactory(feature
                    -> {
     
                final Object[] value = feature.getValue();
                final Notes devoire2 = (Notes) value[6];
                return new SimpleObjectProperty(devoire2);
            });
            examen.setCellValueFactory(feature
                    -> {
     
                final Object[] value = feature.getValue();
                final Notes exam = (Notes) value[7];
                return new SimpleObjectProperty(exam);
            });
            annne.setCellValueFactory(feature
                    -> {
     
                final Object[] value = feature.getValue();
                final Annscolaire annee = (Annscolaire) value[8];
                return new SimpleObjectProperty(annee);
            });
    //Affichage
            nom.setCellFactory(tv -> new TableCell<Object[], Etudiant>() {
                @Override
                public void updateItem(final Etudiant value, final boolean empty) {
                    super.updateItem(value, empty);
                    String text = null;
                    if (!empty && value != null) {
                        text = value.getNometu();
                    }
                    setText(text);
                }
            });
            prenom.setCellFactory(tv -> new TableCell<Object[], Etudiant>() {
                @Override
                public void updateItem(final Etudiant value, final boolean empty) {
                    super.updateItem(value, empty);
                    String text = null;
                    if (!empty && value != null) {
                        text = value.getPrenometu();
                    }
                    setText(text);
                }
            });
     
            filiere.setCellFactory(tv -> new TableCell<Object[], Filiere>() {
                @Override
                public void updateItem(final Filiere value, final boolean empty) {
                    super.updateItem(value, empty);
                    String text = null;
                    if (!empty && value != null) {
                        text = value.getNomfil();
                    }
                    setText(text);
                }
            });
            cours.setCellFactory(tv -> new TableCell<Object[], Cours>() {
                @Override
                public void updateItem(final Cours value, final boolean empty) {
                    super.updateItem(value, empty);
                    String text = null;
                    if (!empty && value != null) {
                        text = value.getCodecours();
                    }
                    setText(text);
                }
            });
            semmestre.setCellFactory(tv -> new TableCell<Object[], Semmestre>() {
                @Override
                public void updateItem(final Semmestre value, final boolean empty) {
                    super.updateItem(value, empty);
                    String text = null;
                    if (!empty && value != null) {
                        text = value.getNomsem();
                    }
                    setText(text);
                }
            });
            devoire1.setCellFactory(tv -> new TableCell<Object[], Notes>() {
                @Override
                public void updateItem(final Notes value, final boolean empty) {
                    super.updateItem(value, empty);
                    Double text = null;
                    if (!empty && value != null) {
                        text = value.getDevoire1();
                    }
                    setText(text.toString());
                }
            });
            devoir2.setCellFactory(tv -> new TableCell<Object[], Notes>() {
                @Override
                public void updateItem(final Notes value, final boolean empty) {
                    super.updateItem(value, empty);
                    Double text = null;
                    if (!empty && value != null) {
                        text = value.getDevoire2();
                    }
                    setText(String.valueOf(text));
                }
            });
            examen.setCellFactory(tv -> new TableCell<Object[], Notes>() {
                @Override
                public void updateItem(final Notes value, final boolean empty) {
                    super.updateItem(value, empty);
                    Double text = null;
                    if (!empty && value != null) {
                        text = value.getExamen();
                    }
                    setText(text.toString());
                }
            });
            annne.setCellFactory(tv -> new TableCell<Object[], Annscolaire>() {
                @Override
                public void updateItem(final Annscolaire value, final boolean empty) {
                    super.updateItem(value, empty);
                    String text = null;
                    if (!empty && value != null) {
                        text = value.getAnneescolaire();
                    }
                    setText(text);
                }
            });
    mon main:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
     public void start(Stage stage) throws Exception {
            Parent root;
            root = FXMLLoader.load(getClass().getResource("/view/Table.fxml"));
            Scene scene = new Scene(root);
            stage.initStyle(StageStyle.DECORATED);
            stage.setScene(scene);
            stage.show();
        }
         public static void main(String[] args) {
            launch(args);
        }
    et l'erreur

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
        [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.String cannot be cast to model.Etudiant
         [java] 	at controller.TableController.lambda$initialize$0(TableController.java:67)
         [java] 	at controller.TableController$$Lambda$111/491551136.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:234)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:53)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader.lambda$initUI$52(TableColumnHeader.java:519)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader$$Lambda$220/1290129872.changed(Unknown Source)
         [java] 	at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
         [java] 	at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
         [java] 	at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105)
         [java] 	at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112)
         [java] 	at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:145)
         [java] 	at javafx.css.StyleableObjectProperty.set(StyleableObjectProperty.java:82)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:353)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:326)
         [java] 	at javafx.css.StyleableObjectProperty.applyStyle(StyleableObjectProperty.java:68)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:340)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:326)
         [java] 	at javafx.scene.CssStyleHelper.transitionToState(CssStyleHelper.java:769)
         [java] 	at javafx.scene.Node.impl_processCSS(Node.java:8949)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1239)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.updateTableColumnHeaders(NestedTableColumnHeader.java:321)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.checkState(NestedTableColumnHeader.java:545)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:427)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computePrefHeight(TableHeaderRow.java:328)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computeMinHeight(TableHeaderRow.java:323)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.control.SkinBase.computeMinHeight(SkinBase.java:254)
         [java] 	at javafx.scene.control.Control.computeMinHeight(Control.java:500)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.layout.Region.computeChildPrefAreaHeight(Region.java:1759)
         [java] 	at javafx.scene.layout.AnchorPane.computeHeight(AnchorPane.java:297)
         [java] 	at javafx.scene.layout.AnchorPane.computeMinHeight(AnchorPane.java:246)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.Scene.getPreferredHeight(Scene.java:1671)
         [java] 	at javafx.scene.Scene.resizeRootToPreferredSize(Scene.java:1635)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1606)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.String cannot be cast to model.Etudiant
         [java] 	at controller.TableController.lambda$initialize$1(TableController.java:74)
         [java] 	at controller.TableController$$Lambda$112/219051332.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:234)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:53)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader.lambda$initUI$52(TableColumnHeader.java:519)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader$$Lambda$220/1290129872.changed(Unknown Source)
         [java] 	at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
         [java] 	at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
         [java] 	at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105)
         [java] 	at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112)
         [java] 	at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:145)
         [java] 	at javafx.css.StyleableObjectProperty.set(StyleableObjectProperty.java:82)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:353)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:326)
         [java] 	at javafx.css.StyleableObjectProperty.applyStyle(StyleableObjectProperty.java:68)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:340)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:326)
         [java] 	at javafx.scene.CssStyleHelper.transitionToState(CssStyleHelper.java:769)
         [java] 	at javafx.scene.Node.impl_processCSS(Node.java:8949)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1239)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.updateTableColumnHeaders(NestedTableColumnHeader.java:321)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.checkState(NestedTableColumnHeader.java:545)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:427)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computePrefHeight(TableHeaderRow.java:328)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computeMinHeight(TableHeaderRow.java:323)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.control.SkinBase.computeMinHeight(SkinBase.java:254)
         [java] 	at javafx.scene.control.Control.computeMinHeight(Control.java:500)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.layout.Region.computeChildPrefAreaHeight(Region.java:1759)
         [java] 	at javafx.scene.layout.AnchorPane.computeHeight(AnchorPane.java:297)
         [java] 	at javafx.scene.layout.AnchorPane.computeMinHeight(AnchorPane.java:246)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.Scene.getPreferredHeight(Scene.java:1671)
         [java] 	at javafx.scene.Scene.resizeRootToPreferredSize(Scene.java:1635)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1606)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.String cannot be cast to model.Filiere
         [java] 	at controller.TableController.lambda$initialize$2(TableController.java:81)
         [java] 	at controller.TableController$$Lambda$113/1427555294.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:234)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:53)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader.lambda$initUI$52(TableColumnHeader.java:519)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader$$Lambda$220/1290129872.changed(Unknown Source)
         [java] 	at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
         [java] 	at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
         [java] 	at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105)
         [java] 	at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112)
         [java] 	at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:145)
         [java] 	at javafx.css.StyleableObjectProperty.set(StyleableObjectProperty.java:82)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:353)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:326)
         [java] 	at javafx.css.StyleableObjectProperty.applyStyle(StyleableObjectProperty.java:68)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:340)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:326)
         [java] 	at javafx.scene.CssStyleHelper.transitionToState(CssStyleHelper.java:769)
         [java] 	at javafx.scene.Node.impl_processCSS(Node.java:8949)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1239)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.updateTableColumnHeaders(NestedTableColumnHeader.java:321)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.checkState(NestedTableColumnHeader.java:545)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:427)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computePrefHeight(TableHeaderRow.java:328)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computeMinHeight(TableHeaderRow.java:323)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.control.SkinBase.computeMinHeight(SkinBase.java:254)
         [java] 	at javafx.scene.control.Control.computeMinHeight(Control.java:500)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.layout.Region.computeChildPrefAreaHeight(Region.java:1759)
         [java] 	at javafx.scene.layout.AnchorPane.computeHeight(AnchorPane.java:297)
         [java] 	at javafx.scene.layout.AnchorPane.computeMinHeight(AnchorPane.java:246)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.Scene.getPreferredHeight(Scene.java:1671)
         [java] 	at javafx.scene.Scene.resizeRootToPreferredSize(Scene.java:1635)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1606)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.String cannot be cast to model.Cours
         [java] 	at controller.TableController.lambda$initialize$3(TableController.java:86)
         [java] 	at controller.TableController$$Lambda$114/489761210.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:234)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:53)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader.lambda$initUI$52(TableColumnHeader.java:519)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader$$Lambda$220/1290129872.changed(Unknown Source)
         [java] 	at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
         [java] 	at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
         [java] 	at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105)
         [java] 	at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112)
         [java] 	at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:145)
         [java] 	at javafx.css.StyleableObjectProperty.set(StyleableObjectProperty.java:82)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:353)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:326)
         [java] 	at javafx.css.StyleableObjectProperty.applyStyle(StyleableObjectProperty.java:68)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:340)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:326)
         [java] 	at javafx.scene.CssStyleHelper.transitionToState(CssStyleHelper.java:769)
         [java] 	at javafx.scene.Node.impl_processCSS(Node.java:8949)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1239)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.updateTableColumnHeaders(NestedTableColumnHeader.java:321)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.checkState(NestedTableColumnHeader.java:545)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:427)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computePrefHeight(TableHeaderRow.java:328)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computeMinHeight(TableHeaderRow.java:323)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.control.SkinBase.computeMinHeight(SkinBase.java:254)
         [java] 	at javafx.scene.control.Control.computeMinHeight(Control.java:500)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.layout.Region.computeChildPrefAreaHeight(Region.java:1759)
         [java] 	at javafx.scene.layout.AnchorPane.computeHeight(AnchorPane.java:297)
         [java] 	at javafx.scene.layout.AnchorPane.computeMinHeight(AnchorPane.java:246)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.Scene.getPreferredHeight(Scene.java:1671)
         [java] 	at javafx.scene.Scene.resizeRootToPreferredSize(Scene.java:1635)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1606)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.String cannot be cast to model.Semmestre
         [java] 	at controller.TableController.lambda$initialize$4(TableController.java:93)
         [java] 	at controller.TableController$$Lambda$115/1666110149.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:234)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:53)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader.lambda$initUI$52(TableColumnHeader.java:519)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader$$Lambda$220/1290129872.changed(Unknown Source)
         [java] 	at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
         [java] 	at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
         [java] 	at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105)
         [java] 	at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112)
         [java] 	at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:145)
         [java] 	at javafx.css.StyleableObjectProperty.set(StyleableObjectProperty.java:82)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:353)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:326)
         [java] 	at javafx.css.StyleableObjectProperty.applyStyle(StyleableObjectProperty.java:68)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:340)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:326)
         [java] 	at javafx.scene.CssStyleHelper.transitionToState(CssStyleHelper.java:769)
         [java] 	at javafx.scene.Node.impl_processCSS(Node.java:8949)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1239)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.updateTableColumnHeaders(NestedTableColumnHeader.java:321)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.checkState(NestedTableColumnHeader.java:545)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:427)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computePrefHeight(TableHeaderRow.java:328)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computeMinHeight(TableHeaderRow.java:323)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.control.SkinBase.computeMinHeight(SkinBase.java:254)
         [java] 	at javafx.scene.control.Control.computeMinHeight(Control.java:500)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.layout.Region.computeChildPrefAreaHeight(Region.java:1759)
         [java] 	at javafx.scene.layout.AnchorPane.computeHeight(AnchorPane.java:297)
         [java] 	at javafx.scene.layout.AnchorPane.computeMinHeight(AnchorPane.java:246)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.Scene.getPreferredHeight(Scene.java:1671)
         [java] 	at javafx.scene.Scene.resizeRootToPreferredSize(Scene.java:1635)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1606)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.String cannot be cast to model.Annscolaire
         [java] 	at controller.TableController.lambda$initialize$8(TableController.java:121)
         [java] 	at controller.TableController$$Lambda$119/2136646147.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:234)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:53)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader.lambda$initUI$52(TableColumnHeader.java:519)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader$$Lambda$220/1290129872.changed(Unknown Source)
         [java] 	at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
         [java] 	at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
         [java] 	at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105)
         [java] 	at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112)
         [java] 	at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:145)
         [java] 	at javafx.css.StyleableObjectProperty.set(StyleableObjectProperty.java:82)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:353)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:326)
         [java] 	at javafx.css.StyleableObjectProperty.applyStyle(StyleableObjectProperty.java:68)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:340)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:326)
         [java] 	at javafx.scene.CssStyleHelper.transitionToState(CssStyleHelper.java:769)
         [java] 	at javafx.scene.Node.impl_processCSS(Node.java:8949)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1239)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.updateTableColumnHeaders(NestedTableColumnHeader.java:321)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.checkState(NestedTableColumnHeader.java:545)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:427)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computePrefHeight(TableHeaderRow.java:328)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computeMinHeight(TableHeaderRow.java:323)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.control.SkinBase.computeMinHeight(SkinBase.java:254)
         [java] 	at javafx.scene.control.Control.computeMinHeight(Control.java:500)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.layout.Region.computeChildPrefAreaHeight(Region.java:1759)
         [java] 	at javafx.scene.layout.AnchorPane.computeHeight(AnchorPane.java:297)
         [java] 	at javafx.scene.layout.AnchorPane.computeMinHeight(AnchorPane.java:246)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.Scene.getPreferredHeight(Scene.java:1671)
         [java] 	at javafx.scene.Scene.resizeRootToPreferredSize(Scene.java:1635)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1606)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.Double cannot be cast to model.Notes
         [java] 	at controller.TableController.lambda$initialize$5(TableController.java:100)
         [java] 	at controller.TableController$$Lambda$116/496254909.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:234)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:53)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader.lambda$initUI$52(TableColumnHeader.java:519)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader$$Lambda$220/1290129872.changed(Unknown Source)
         [java] 	at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
         [java] 	at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
         [java] 	at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105)
         [java] 	at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112)
         [java] 	at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:145)
         [java] 	at javafx.css.StyleableObjectProperty.set(StyleableObjectProperty.java:82)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:353)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:326)
         [java] 	at javafx.css.StyleableObjectProperty.applyStyle(StyleableObjectProperty.java:68)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:340)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:326)
         [java] 	at javafx.scene.CssStyleHelper.transitionToState(CssStyleHelper.java:769)
         [java] 	at javafx.scene.Node.impl_processCSS(Node.java:8949)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1239)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.updateTableColumnHeaders(NestedTableColumnHeader.java:321)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.checkState(NestedTableColumnHeader.java:545)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:427)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:433)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computePrefHeight(TableHeaderRow.java:328)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computeMinHeight(TableHeaderRow.java:323)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.control.SkinBase.computeMinHeight(SkinBase.java:254)
         [java] 	at javafx.scene.control.Control.computeMinHeight(Control.java:500)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.layout.Region.computeChildPrefAreaHeight(Region.java:1759)
         [java] 	at javafx.scene.layout.AnchorPane.computeHeight(AnchorPane.java:297)
         [java] 	at javafx.scene.layout.AnchorPane.computeMinHeight(AnchorPane.java:246)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.Scene.getPreferredHeight(Scene.java:1671)
         [java] 	at javafx.scene.Scene.resizeRootToPreferredSize(Scene.java:1635)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1606)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.Double cannot be cast to model.Notes
         [java] 	at controller.TableController.lambda$initialize$6(TableController.java:107)
         [java] 	at controller.TableController$$Lambda$117/2130647010.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:234)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:53)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader.lambda$initUI$52(TableColumnHeader.java:519)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader$$Lambda$220/1290129872.changed(Unknown Source)
         [java] 	at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
         [java] 	at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
         [java] 	at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105)
         [java] 	at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112)
         [java] 	at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:145)
         [java] 	at javafx.css.StyleableObjectProperty.set(StyleableObjectProperty.java:82)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:353)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:326)
         [java] 	at javafx.css.StyleableObjectProperty.applyStyle(StyleableObjectProperty.java:68)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:340)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:326)
         [java] 	at javafx.scene.CssStyleHelper.transitionToState(CssStyleHelper.java:769)
         [java] 	at javafx.scene.Node.impl_processCSS(Node.java:8949)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1239)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.updateTableColumnHeaders(NestedTableColumnHeader.java:321)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.checkState(NestedTableColumnHeader.java:545)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:427)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:433)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computePrefHeight(TableHeaderRow.java:328)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computeMinHeight(TableHeaderRow.java:323)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.control.SkinBase.computeMinHeight(SkinBase.java:254)
         [java] 	at javafx.scene.control.Control.computeMinHeight(Control.java:500)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.layout.Region.computeChildPrefAreaHeight(Region.java:1759)
         [java] 	at javafx.scene.layout.AnchorPane.computeHeight(AnchorPane.java:297)
         [java] 	at javafx.scene.layout.AnchorPane.computeMinHeight(AnchorPane.java:246)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.Scene.getPreferredHeight(Scene.java:1671)
         [java] 	at javafx.scene.Scene.resizeRootToPreferredSize(Scene.java:1635)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1606)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.Double cannot be cast to model.Notes
         [java] 	at controller.TableController.lambda$initialize$7(TableController.java:114)
         [java] 	at controller.TableController$$Lambda$118/1779928446.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:234)
         [java] 	at com.sun.javafx.scene.control.skin.TableViewSkin.resizeColumnToFitContent(TableViewSkin.java:53)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader.lambda$initUI$52(TableColumnHeader.java:519)
         [java] 	at com.sun.javafx.scene.control.skin.TableColumnHeader$$Lambda$220/1290129872.changed(Unknown Source)
         [java] 	at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182)
         [java] 	at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81)
         [java] 	at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105)
         [java] 	at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112)
         [java] 	at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:145)
         [java] 	at javafx.css.StyleableObjectProperty.set(StyleableObjectProperty.java:82)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:353)
         [java] 	at javafx.scene.control.Labeled$6.set(Labeled.java:326)
         [java] 	at javafx.css.StyleableObjectProperty.applyStyle(StyleableObjectProperty.java:68)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:340)
         [java] 	at javafx.scene.control.Labeled$6.applyStyle(Labeled.java:326)
         [java] 	at javafx.scene.CssStyleHelper.transitionToState(CssStyleHelper.java:769)
         [java] 	at javafx.scene.Node.impl_processCSS(Node.java:8949)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1239)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.updateTableColumnHeaders(NestedTableColumnHeader.java:321)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.checkState(NestedTableColumnHeader.java:545)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:427)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.NestedTableColumnHeader.computePrefHeight(NestedTableColumnHeader.java:433)
         [java] 	at javafx.scene.Parent.prefHeight(Parent.java:916)
         [java] 	at javafx.scene.layout.Region.prefHeight(Region.java:1432)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computePrefHeight(TableHeaderRow.java:328)
         [java] 	at com.sun.javafx.scene.control.skin.TableHeaderRow.computeMinHeight(TableHeaderRow.java:323)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.control.SkinBase.computeMinHeight(SkinBase.java:254)
         [java] 	at javafx.scene.control.Control.computeMinHeight(Control.java:500)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.layout.Region.computeChildPrefAreaHeight(Region.java:1759)
         [java] 	at javafx.scene.layout.AnchorPane.computeHeight(AnchorPane.java:297)
         [java] 	at javafx.scene.layout.AnchorPane.computeMinHeight(AnchorPane.java:246)
         [java] 	at javafx.scene.Parent.minHeight(Parent.java:944)
         [java] 	at javafx.scene.layout.Region.minHeight(Region.java:1398)
         [java] 	at javafx.scene.Scene.getPreferredHeight(Scene.java:1671)
         [java] 	at javafx.scene.Scene.resizeRootToPreferredSize(Scene.java:1635)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1606)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Exception in Application start method
         [java] Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.String cannot be cast to model.Etudiant
         [java] 	at controller.TableController.lambda$initialize$0(TableController.java:67)
         [java] 	at controller.TableController$$Lambda$111/491551136.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableRowSkinBase.updateCells(TableRowSkinBase.java:510)
         [java] 	at com.sun.javafx.scene.control.skin.TableRowSkinBase.init(TableRowSkinBase.java:147)
         [java] 	at com.sun.javafx.scene.control.skin.TableRowSkin.<init>(TableRowSkin.java:64)
         [java] 	at javafx.scene.control.TableRow.createDefaultSkin(TableRow.java:212)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:890)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.Parent.impl_processCSS(Parent.java:1270)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:886)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8813)
         [java] 	at javafx.scene.Scene.doCSSPass(Scene.java:523)
         [java] 	at javafx.scene.Scene.access$3600(Scene.java:144)
         [java] 	at javafx.scene.Scene$ScenePulseListener.pulse(Scene.java:2353)
         [java] 	at com.sun.javafx.tk.Toolkit.lambda$runPulse$28(Toolkit.java:314)
         [java] 	at com.sun.javafx.tk.Toolkit$$Lambda$234/1842029946.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.tk.Toolkit.runPulse(Toolkit.java:313)
         [java] 	at com.sun.javafx.tk.Toolkit.firePulse(Toolkit.java:340)
         [java] 	at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:444)
         [java] 	at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:424)
         [java] 	at com.sun.javafx.tk.quantum.QuantumToolkit.lambda$runToolkit$348(QuantumToolkit.java:295)
         [java] 	at com.sun.javafx.tk.quantum.QuantumToolkit$$Lambda$41/577470047.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] java.lang.reflect.InvocationTargetException
         [java] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         [java] 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
         [java] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         [java] 	at java.lang.reflect.Method.invoke(Method.java:483)
         [java] 	at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:363)
         [java] 	at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:303)
         [java] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         [java] 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
         [java] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         [java] 	at java.lang.reflect.Method.invoke(Method.java:483)
         [java] 	at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767)
         [java] Caused by: java.lang.RuntimeException: Exception in Application start method
         [java] 	at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:875)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$132(LauncherImpl.java:157)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$48/815033865.run(Unknown Source)
         [java] 	at java.lang.Thread.run(Thread.java:745)
         [java] Caused by: java.lang.ClassCastException: java.lang.String cannot be cast to model.Etudiant
         [java] 	at controller.TableController.lambda$initialize$0(TableController.java:67)
         [java] 	at controller.TableController$$Lambda$111/491551136.call(Unknown Source)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
         [java] 	at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
         [java] 	at javafx.scene.control.TableCell.updateItem(TableCell.java:630)
         [java] 	at javafx.scene.control.TableCell.indexChanged(TableCell.java:460)
         [java] 	at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
         [java] 	at com.sun.javafx.scene.control.skin.TableRowSkinBase.updateCells(TableRowSkinBase.java:510)
         [java] 	at com.sun.javafx.scene.control.skin.TableRowSkinBase.init(TableRowSkinBase.java:147)
         [java] 	at com.sun.javafx.scene.control.skin.TableRowSkin.<init>(TableRowSkin.java:64)
         [java] 	at javafx.scene.control.TableRow.createDefaultSkin(TableRow.java:212)
         [java] 	at javafx.scene.control.Control.impl_processCSS(Control.java:890)
         [java] 	at javafx.scene.Node.processCSS(Node.java:8822)
         [java] 	at javafx.scene.Node.applyCss(Node.java:8918)
         [java] 	at com.sun.javafx.scene.control.skin.VirtualFlow.setCellIndex(VirtualFlow.java:1924)
         [java] 	at com.sun.javafx.scene.control.skin.VirtualFlow.getCell(VirtualFlow.java:1763)
         [java] 	at com.sun.javafx.scene.control.skin.VirtualFlow.getCellLength(VirtualFlow.java:1839)
         [java] 	at com.sun.javafx.scene.control.skin.VirtualFlow.computeViewportOffset(VirtualFlow.java:2475)
         [java] 	at com.sun.javafx.scene.control.skin.VirtualFlow.layoutChildren(VirtualFlow.java:1186)
         [java] 	at javafx.scene.Parent.layout(Parent.java:1074)
         [java] 	at javafx.scene.Parent.layout(Parent.java:1080)
         [java] 	at javafx.scene.Parent.layout(Parent.java:1080)
         [java] 	at javafx.scene.Scene.doLayoutPass(Scene.java:530)
         [java] 	at javafx.scene.Scene.preferredSize(Scene.java:1607)
         [java] 	at javafx.scene.Scene.impl_preferredSize(Scene.java:1681)
         [java] 	at javafx.stage.Window$9.invalidated(Window.java:753)
         [java] 	at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)
         [java] 	at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:143)
         [java] 	at javafx.stage.Window.setShowing(Window.java:829)
         [java] 	at javafx.stage.Window.show(Window.java:844)
         [java] 	at javafx.stage.Stage.show(Stage.java:255)
         [java] 	at controller.TabMain.start(TabMain.java:32)
         [java] 	at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$138(LauncherImpl.java:821)
         [java] 	at com.sun.javafx.application.LauncherImpl$$Lambda$51/1915747919.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$150(PlatformImpl.java:319)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$44/584634336.run(Unknown Source)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$null$148(PlatformImpl.java:288)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$47/562719211.run(Unknown Source)
         [java] 	at java.security.AccessController.doPrivileged(Native Method)
         [java] 	at com.sun.javafx.application.PlatformImpl.lambda$runLater$149(PlatformImpl.java:287)
         [java] 	at com.sun.javafx.application.PlatformImpl$$Lambda$45/501263526.run(Unknown Source)
         [java] 	at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
         [java] 	at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         [java] 	at com.sun.glass.ui.win.WinApplication.lambda$null$126(WinApplication.java:102)
         [java] 	at com.sun.glass.ui.win.WinApplication$$Lambda$37/96639997.run(Unknown Source)
         [java] 	... 1 more
         [java] Exception running application controller.TabMain
         [java] Java Result: 1
    j'utilise le netbeans 11

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    java version "1.8.0_20-ea"
    Java(TM) SE Runtime Environment (build 1.8.0_20-ea-b13)
    Java HotSpot(TM) 64-Bit Server VM (build 25.20-b12, mixed mode)

    svp aidez-moi!!!!!!!!!!!!!

  5. #5
    Rédacteur/Modérateur

    Avatar de bouye
    Homme Profil pro
    Information Technologies Specialist (Scientific Computing)
    Inscrit en
    Août 2005
    Messages
    6 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : Nouvelle-Calédonie

    Informations professionnelles :
    Activité : Information Technologies Specialist (Scientific Computing)
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Août 2005
    Messages : 6 840
    Points : 22 854
    Points
    22 854
    Billets dans le blog
    51
    Par défaut
    Faudrait songer à lire l'erreur
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    java.lang.ClassCastException: java.lang.String cannot be cast to model.Etudiant
         [java] 	at controller.TableController.lambda$initialize$0(TableController.java:67)
    Visiblement dans ton tableau tu as une String à cet endroit, pas un Etudiant
    Merci de penser au tag quand une réponse a été apportée à votre question. Aucune réponse ne sera donnée à des messages privés portant sur des questions d'ordre technique. Les forums sont là pour que vous y postiez publiquement vos problèmes.

    suivez mon blog sur Développez.

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. ~ Rich Cook

  6. #6
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    j'ai utiliser Etudiant voila la ligne 67:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
           final Etudiant student = (Etudiant) value[0];
    c'est au niveau de l'affichage que j'ai utiliser un string

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
     
    nom.setCellFactory(tv -> new TableCell<Object[], Etudiant>() {
                @Override
                public void updateItem(final Etudiant value, final boolean empty) {
                    super.updateItem(value, empty);
                    String text = null;
                    if (!empty && value != null) {
                        text = value.getNometu();
                    }
                    setText(text);
                }
            });

  7. #7
    Rédacteur/Modérateur

    Avatar de bouye
    Homme Profil pro
    Information Technologies Specialist (Scientific Computing)
    Inscrit en
    Août 2005
    Messages
    6 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : Nouvelle-Calédonie

    Informations professionnelles :
    Activité : Information Technologies Specialist (Scientific Computing)
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Août 2005
    Messages : 6 840
    Points : 22 854
    Points
    22 854
    Billets dans le blog
    51
    Par défaut
    A la ligne 67 de TableController.java, tu cast un String en Etudiant, ca veut bien dire que quelques part il y a là une donnée qui n'est pas du type que tu attends.
    Merci de penser au tag quand une réponse a été apportée à votre question. Aucune réponse ne sera donnée à des messages privés portant sur des questions d'ordre technique. Les forums sont là pour que vous y postiez publiquement vos problèmes.

    suivez mon blog sur Développez.

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. ~ Rich Cook

  8. #8
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    oui monsieur et netbeans même propose de le faire.
    svp maintenant que doit-je faire svp???

  9. #9
    Rédacteur/Modérateur

    Avatar de bouye
    Homme Profil pro
    Information Technologies Specialist (Scientific Computing)
    Inscrit en
    Août 2005
    Messages
    6 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : Nouvelle-Calédonie

    Informations professionnelles :
    Activité : Information Technologies Specialist (Scientific Computing)
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Août 2005
    Messages : 6 840
    Points : 22 854
    Points
    22 854
    Billets dans le blog
    51
    Par défaut
    Ben y a quoi à cette ligne 67 ?
    Merci de penser au tag quand une réponse a été apportée à votre question. Aucune réponse ne sera donnée à des messages privés portant sur des questions d'ordre technique. Les forums sont là pour que vous y postiez publiquement vos problèmes.

    suivez mon blog sur Développez.

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. ~ Rich Cook

  10. #10
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    final Etudiant student = (Etudiant) value[0];

  11. #11
    Rédacteur/Modérateur

    Avatar de bouye
    Homme Profil pro
    Information Technologies Specialist (Scientific Computing)
    Inscrit en
    Août 2005
    Messages
    6 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : Nouvelle-Calédonie

    Informations professionnelles :
    Activité : Information Technologies Specialist (Scientific Computing)
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Août 2005
    Messages : 6 840
    Points : 22 854
    Points
    22 854
    Billets dans le blog
    51
    Par défaut
    Et donc l'erreur, qui est très explicite, te dit que value[0] contient un String et non pas un Etudiant.
    A toi donc de revoir tout le reste du code pour changer le type partout où cela est nécessaire et de mettre le bon cast pour éviter que cette erreur se produise.
    Ôte moi d'un doute, tu as vérifié quels sont les types des valeurs contenues dans les Object[] que ta méthode qui interroge ta base retourne ?
    Merci de penser au tag quand une réponse a été apportée à votre question. Aucune réponse ne sera donnée à des messages privés portant sur des questions d'ordre technique. Les forums sont là pour que vous y postiez publiquement vos problèmes.

    suivez mon blog sur Développez.

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. ~ Rich Cook

  12. #12
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    j'ai généré les classe de la base

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
     
    public class Etudiant implements Serializable {
     
        private static final long serialVersionUID = 1L;
        @Id
        @GeneratedValue(strategy = GenerationType.IDENTITY)
        @Basic(optional = false)
        @Column(name = "Id_etu")
        private Integer idetu;
        @Basic(optional = false)
        @Column(name = "Nom_etu")
        private String nometu;
        @Basic(optional = false)
        @Column(name = "Prenom_etu")
        private String prenometu;
        @Basic(optional = false)
        @Column(name = "Id_fil")
        private int idfil;
        @Basic(optional = false)
        @Column(name = "Id_prom")
        private int idprom;
     
        public Etudiant() {
        }
     
        public Etudiant(Integer idetu) {
            this.idetu = idetu;
        }
     
        public Etudiant(Integer idetu, String nometu, String prenometu, int idfil, int idprom) {
            this.idetu = idetu;
            this.nometu = nometu;
            this.prenometu = prenometu;
            this.idfil = idfil;
            this.idprom = idprom;
        }
     
        public Integer getIdetu() {
            return idetu;
        }
     
        public void setIdetu(Integer idetu) {
            this.idetu = idetu;
        }
     
        public String getNometu() {
            return nometu;
        }
     
        public void setNometu(String nometu) {
            this.nometu = nometu;
        }
     
        public String getPrenometu() {
            return prenometu;
        }
     
        public void setPrenometu(String prenometu) {
            this.prenometu = prenometu;
        }
     
        public int getIdfil() {
            return idfil;
        }
     
        public void setIdfil(int idfil) {
            this.idfil = idfil;
        }
     
        public int getIdprom() {
            return idprom;
        }
     
        public void setIdprom(int idprom) {
            this.idprom = idprom;
        }
     
        @Override
        public int hashCode() {
            int hash = 0;
            hash += (idetu != null ? idetu.hashCode() : 0);
            return hash;
        }
     
        @Override
        public boolean equals(Object object) {
            // TODO: Warning - this method won't work in the case the id fields are not set
            if (!(object instanceof Etudiant)) {
                return false;
            }
            Etudiant other = (Etudiant) object;
            if ((this.idetu == null && other.idetu != null) || (this.idetu != null && !this.idetu.equals(other.idetu))) {
                return false;
            }
            return true;
        }
     
        @Override
        public String toString() {
            return "model.Etudiant[ idetu=" + idetu + " ]";
        }
     
    }
    dois-je remplacer les types en Etudiant ????
    exemple:Etudiant nometu;

  13. #13
    Rédacteur/Modérateur

    Avatar de bouye
    Homme Profil pro
    Information Technologies Specialist (Scientific Computing)
    Inscrit en
    Août 2005
    Messages
    6 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : Nouvelle-Calédonie

    Informations professionnelles :
    Activité : Information Technologies Specialist (Scientific Computing)
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Août 2005
    Messages : 6 840
    Points : 22 854
    Points
    22 854
    Billets dans le blog
    51
    Par défaut
    Et, cette classe se retrouve d'une manière ou d'une autre dans ta TableView ou pas ?

    Essaie de réfléchir un peu, car ce n'est pas à moi de faire tout le travail pour toi ; je suis là pour guider ta réflexion et te donner des pistes de solution. Ta méthode qui interroge ta base retourne une List<Object[]>, pour le moment ce sont ces valeurs-ci qui sont dans ta table (chaque ligne de la table est un Object[]). Est-ce que par le plus grand des hasards, il ne faudrait pas convertir cette List<Object[]> en List<Etudiant> pour permettre une meilleure manipulation des données (chaque ligne de la table est alors un Etudiant) ?

    Si c'est le cas alors il faut faire la conversion bien sur, mais aussi probablement revoir comment fonctionnent la table et les colonnes, par exemple :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    @FXML
    private TableView<Etudiant> alletu;
    @FXML
    private TableColumn<Etudiant, String> nom;
    [...]
    Merci de penser au tag quand une réponse a été apportée à votre question. Aucune réponse ne sera donnée à des messages privés portant sur des questions d'ordre technique. Les forums sont là pour que vous y postiez publiquement vos problèmes.

    suivez mon blog sur Développez.

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. ~ Rich Cook

  14. #14
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    Au début c'est ce que j'ai fait mais comme ma requête est une jointure de quatre table je peut pas utiliser List<Etudiant> je pense.
    Merci beaucoup pour votre aide

  15. #15
    Rédacteur/Modérateur

    Avatar de bouye
    Homme Profil pro
    Information Technologies Specialist (Scientific Computing)
    Inscrit en
    Août 2005
    Messages
    6 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : Nouvelle-Calédonie

    Informations professionnelles :
    Activité : Information Technologies Specialist (Scientific Computing)
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Août 2005
    Messages : 6 840
    Points : 22 854
    Points
    22 854
    Billets dans le blog
    51
    Par défaut
    Dans ce cas, si classes Etudiant[] t'es inutile, tu dois adapter le code de la table et des colonnes en fonction des types réels que contient ton Object[]. Donc déjà il te faut découvrir ces types soit via des impressions soit en passant par le débogueur, par exemple aux alentours du moment où tu fais return (List<Object[]>)q.getResultList();.
    Merci de penser au tag quand une réponse a été apportée à votre question. Aucune réponse ne sera donnée à des messages privés portant sur des questions d'ordre technique. Les forums sont là pour que vous y postiez publiquement vos problèmes.

    suivez mon blog sur Développez.

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. ~ Rich Cook

  16. #16
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    le problème c'est que je suis débutant en javafx et c'est mon premier projet en plus je ne trouve pas de tutoriel sur une requête de jointure avec tableView je galère depuis trois semaine sur ça!!!!je sais plus quoi faire

  17. #17
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    bonsoir monsieur j'ai passer toute la journée en essayant de résoudre mon problème mais sans réponse vue que je ne maîtrise pas javafx et que je l'apprend par moi
    même!!!!svp débloquer moi svp

  18. #18
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Salut,

    On voit ta requête dans ta première question :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    query = " SELECT e.nometu,e.prenometu,f.nomfil, c.codecours,s.nomsem,n.devoire1,n.devoire2,n.examen,\n" +
                        "an.annescolaire\n" +
                        "FROM Cours c,Notes n, Etudiant e,Annscolaire an,Semmestre s,Filiere f\n" +
                        "WHERE e.idetu = notes.idetu\n" +
                        "AND c.idcours = n.idcours\n" +
                        "AND s.idsem = c.idsem \n" +
                        "AND an.idAnne = n.annesco\n" +
                        "AND e.idfil=f.idfil\n" +
                        "GROUP BY e.nometu,e.idetu, c.codecours,s.nomsem,an.annescolaire";
    Ensuite, qu'il y ait une table ou quatre, ça ne change rien et ce n'est pas un problème de JavaFX : tu dois bien savoir, par ton modèle (tes tables) quels sont les types de chaque colonne du SELECT. Tu dois donc pouvoir savoir associer à chaque élément de chaque ligne sous forme de Object[] ou d'une classe d'accès faite pour ça éventuellement. Cela ne peut pas être Etudiant, puisque tu as quatre tables. Donc soit tu gères la ligne sous la forme d'un tableau Object[] et tu récupères chaque colonne par son type de base (par exemple (String)value[0] si value[0] est une String), soit éventuellement tu fais une classe spéciale qui représente ton enregistrement (un mélange d'informations de quatre tables, du genre EtudiantNotesParFilereEtCoursEtAnneeJeNeSaisQuoi, qui est peut-être un peu trop spécifique)

    Après, je ne connais pas JavaFX, mais quand je vois:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     final Etudiant student = (Etudiant)value[0];
    je me dis que forcément ça ne va pas. value[0], c'est le premier élément d'une ligne, donc qui correspond à e.nometu dans la requête SQL, soit Etudiant.nometu, donc à priori le nom de l'étudiant. Donc pas un Etudiant. Il n'y aucune raison que ça en soit un. C'est une String.

    C'est d'ailleurs exactement ce que te dis le message de l'erreur : tu essayes de caster en Etudiant une String et une String ne peut pas être castée en Etudiant, évidemment.

    Donc, tu listes les colonnes que tu as dans ta requête (ça, c'est pas du JavaFX, même pas du Java en fait) :
    1. Etudiant.nometu
    2. Etudiant.prenometu,
    3. Filiere.nomfil
    4. Cours.codecours
    5. ...

    Puis pour chacune, en fonction du type de la donnée, tu associes un type Java :

    1. Etudiant.nometu String à priori
    2. Etudiant.prenometu, String à priori
    3. Filiere.nomfil String à priori
    4. Cours.codecours : ...
    5. ...



    On t'a donné des exemples de forme de code pour construire les colonnes de ta table. C'est à toi d'adapter ces exemples pour que chaque colonne de la TableView soit associée à la bonne donnée, avec le bon typage.

    Donc si je reprends l'exemple de @bouye dans sa première réponse, sans rien n'y connaître à JavaFX, je suppose qu'il faudrait faire :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    nom.setCellValueFactory(feature -> {
        final Object[] value = feature.getValue();
        final String nomEtudiant = (String)value[0];
        return new SimpleObjectProperty<>(nomEtudiant);
    });
    et
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    nom.setCellFactory(tv -> new TableCell<String>() {
        @Override
        public void updateItem(final String value, final boolean empty) {
            super.updateItem(value, empty);
            String text = null;
            if (!empty && value != null) { 
                text = value;
            }
            setText(text);
        }
    });
    et ainsi de suite pour chaque colonne.

    Une autre façon d'aborder le problème serait que ta méthode Requette.allEtu() ne retourne pas un Object[] avec un élément pour chaque colonne, mais des éléments qui représentent les entités de ton modèle, un pour un Etudiant, un pour un Cours, un pour une Filiere, etc,

    Et dans ce cas, évidemment, il faudra adapter :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    nom.setCellValueFactory(feature -> {
        final Object[] value = feature.getValue();
        final Etudiant etudiant = (Etudiant)value[0];
        return new SimpleObjectProperty<>(etudiant.getNom());
    });
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  19. #19
    Rédacteur/Modérateur

    Avatar de bouye
    Homme Profil pro
    Information Technologies Specialist (Scientific Computing)
    Inscrit en
    Août 2005
    Messages
    6 840
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : Nouvelle-Calédonie

    Informations professionnelles :
    Activité : Information Technologies Specialist (Scientific Computing)
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Août 2005
    Messages : 6 840
    Points : 22 854
    Points
    22 854
    Billets dans le blog
    51
    Par défaut
    Oui ça le soucis c'est que c'est absolument pas un problème de JavaFX mais un soucis de non-maîtrise de ce que ta requête sur ta base retourne... alors qu'il te suffisait de vérifier ce que contenait tes lignes, ce qui peut être simplement fait avec :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    List<Object[]> leResultatDeMaRequete = [...]
    Arrays.stream(leResultatDeMaRequete.get(0))
      .map(v -> v.getClass().getName() + "\t")
      .forEach(System.out::print);
    System.out.println();
    Merci de penser au tag quand une réponse a été apportée à votre question. Aucune réponse ne sera donnée à des messages privés portant sur des questions d'ordre technique. Les forums sont là pour que vous y postiez publiquement vos problèmes.

    suivez mon blog sur Développez.

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. ~ Rich Cook

  20. #20
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Février 2020
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 24
    Localisation : Togo

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2020
    Messages : 18
    Points : 5
    Points
    5
    Par défaut
    Et enfin ça marche parfaitement merci beaucoup à vous tous

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 5
    Dernier message: 06/10/2009, 09h37
  2. Réponses: 4
    Dernier message: 11/06/2009, 16h03
  3. Réponses: 6
    Dernier message: 23/04/2007, 15h21
  4. [MySQL] Problème avec une requête SQL
    Par chobol dans le forum PHP & Base de données
    Réponses: 12
    Dernier message: 11/05/2006, 12h29
  5. [VB]Problème avec une requête SQL
    Par Tyrael62 dans le forum VB 6 et antérieur
    Réponses: 7
    Dernier message: 18/03/2006, 17h47

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo