mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
15 lines
533 B
XML
15 lines
533 B
XML
<?import javafx.scene.control.ChoiceBox?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import java.lang.System?>
|
|
<?import java.util.Collections?>
|
|
<VBox xmlns:fx="http://javafx.com/fxml">
|
|
<ChoiceBox>
|
|
<Collections fx:factory="emptyList"/>
|
|
</ChoiceBox>
|
|
<ChoiceBox>
|
|
<Collections fx:factory="<error descr="Cannot resolve symbol 'unmodifiableList'">unmodifiableList</error>"/>
|
|
</ChoiceBox>
|
|
<ChoiceBox>
|
|
<System fx:factory="<error descr="Cannot resolve symbol 'gc'">gc</error>"/>
|
|
</ChoiceBox>
|
|
</VBox> |