我正在製作一個簡單的食譜應用程序來練習JavaFX,我遇到了一個問題。我似乎無法導入這個類:如何正確導入我的自定義類到這個FXML文件中?
package application;
import javafx.beans.property.SimpleStringProperty;
public class Recipe {
private final SimpleStringProperty Name = new SimpleStringProperty("");
public Recipe() {
this("");
}
public Recipe(String recipeName) {
setRecipeName(recipeName);
}
public String getRecipeName() {
return Name.get();
}
public void setRecipeName(String rName) {
Name.set(rName);
}
}
進入這個FXML視圖文件:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.control.cell.*?>
<?import javafx.collections.*?>
<?import fxmltableview.*?>
<?import java.lang.String?>
<?import application.Recipe ?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1">
<children>
<TableView prefHeight="400.0" prefWidth="600.0">
<columns>
<TableColumn prefWidth="599.0" text="Column One" >
<cellValueFactory><PropertyValueFactory property="Name" />
</cellValueFactory>
</TableColumn>
</columns>
<items>
<FXCollections fx:factory="observableArrayList">
<Recipe Name="Test Name"/>
</FXCollections>
</items>
</TableView>
</children>
</AnchorPane>
我一直就行收到一個錯誤。任何幫助是極大的讚賞。
嗨, 我不知道,如果解決您的問題(我想不會,SRY),但命名您的變量「名稱」(首字母大寫)被認爲是不好風格,並可能被編譯器誤解。 (至少據我所知...) – GoatyGuy
是的,這並沒有真正幫助我,但你是對的,我改變它爲recipeName,這是更明顯的,但...我仍然無法得到它工作。編輯:沒關係,這是命名約定。名稱顯然指的是...中的保留字段,我不知道,但現在起作用。 – JLH