fxmlを使用してComboBoxを作成しようとしています。そして、次のようなエラーがあります。javafx.collctions.FXCollectionsのインスタンスはFXMLLoaderで作成できません。そしてここにコードがあります:
<ComboBox fx:id="setBeginWidth" blendMode="DIFFERENCE" layoutX="325.0" layoutY="262.0"prefHeight="21.0" prefWidth="196.0" promptText="Set the Width of the Map">
<items>
<FXCollections fx:factory="observableArrayList">
<Integer fx:value="4" />
<Integer fx:value="5" />
<Integer fx:value="6" />
<Integer fx:value="7" />
<Integer fx:value="8" />
<Integer fx:value="9" />
<Integer fx:value="10" />
</FXCollections>
</items>
</ComboBox>
ご協力いただきありがとうございます。