mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
19 lines
559 B
XML
19 lines
559 B
XML
<?import javafx.scene.layout.GridPane?>
|
|
<?import java.lang.String?>
|
|
<?import javafx.collections.FXCollections?>
|
|
<?import java.util.ArrayList?>
|
|
<?import java.lang.Double?>
|
|
<GridPane xmlns:fx="http://javafx.com/fxml">
|
|
<fx:define>
|
|
<FXCollections fx:factory="observableArrayList">
|
|
<ArrayList fx:value=<error descr="Unable to coerce A to java.util.ArrayList">"A"</error>/>
|
|
</FXCollections>
|
|
|
|
<FXCollections fx:factory="observableArrayList">
|
|
<String fx:value="A"/>
|
|
<Double value="5"/>
|
|
</FXCollections>
|
|
|
|
</fx:define>
|
|
</GridPane>
|