Files
openide/plugins/javaFX/testData/completion/factoryMethods_after.fxml
2013-02-01 13:08:17 +04:00

11 lines
335 B
XML

<?import javafx.scene.layout.GridPane?>
<?import java.lang.String?>
<?import javafx.collections.FXCollections?>
<GridPane xmlns:fx="http://javafx.com/fxml" fx:controller="sample.Controller">
<fx:define>
<FXCollections fx:factory="observableArrayList">
<String fx:value="A"/>
</FXCollections>
</fx:define>
</GridPane>