document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  //ChoiceBox
  2.  
  3.  ChoiceBox cb1 = new ChoiceBox();
  4.  //ADD itens ao ChoiceBox
  5.  cb1.getItems().addAll("item1", "item2", "item3");
  6.  ChoiceBox cb2 = new ChoiceBox();
  7.  cb2.getItems().addAll("item1", "item2", "item3");
  8.  ChoiceBox cb3 = new ChoiceBox();
  9.  cb3.getItems().addAll("item1", "item2", "item3");
  10.    //Adcionando ChoiceBox ao node do tilepane
  11.   TitledPane tx = new TitledPane("T1", cb1);
  12.   TitledPane tx2 = new TitledPane("T2", cb2);
  13.   TitledPane tx3 = new TitledPane("T3", cb3);
  14.  //agrupando com TilePanes ao Accordion
  15.  Accordion accordion1 = new Accordion();
  16.  accordion1.getPanes().addAll(tx,tx2,tx3);
');