use*_*967 2 javafx fxml javafx-8 fxmlloader
在“Pro JavaFX 8:构建桌面、移动和嵌入式 Java 客户端的权威指南”的第 3 章中,一个示例说明了如何直接在 FXML 文件中指定对象。
您可以在本文末尾找到完整的 FXML 文件以及示例中的其他文件。
这是我正在讨论的片段。该sizes字段使用fx:factory属性来指示必须使用工厂方法 Utilities.createList() 创建一个整数列表,然后用三个整数填充该列表。
<sizes>
<Utilities fx:factory="createMyCollection">
<Integer fx:value="1"/>
<Integer fx:value="2"/>
<Integer fx:value="3"/>
</Utilities>
</sizes>
Run Code Online (Sandbox Code Playgroud)
这是Utilities.java:
package projavafx.fxmlbasicfeatures;
import java.util.ArrayList;
import java.util.List;
public class Utilities {
public static final Double TEN_PCT = 0.1d;
public static final Double TWENTY_PCT = 0.2d;
public static final Double THIRTY_PCT = 0.3d;
public static List<Integer> createList() {
return new ArrayList<>();
}
}
Run Code Online (Sandbox Code Playgroud)
我的问题是:使用这些工厂方法涉及的一般机制是什么?
我想了解 FXMLLoader 如何知道需要使用该add方法将三个整数添加到创建的对象中。自然地,它必须以某种方式List知道 或,Collection但是该知识在哪里指定?它是内置在 FXMLLoader 中吗?如果是这样,如何为用户定义的类提供这样的工厂方法?
我实际上尝试将它与用户定义的类一起使用。我将以下代码片段添加到 Utilities.java,它创建一个MyCollection具有单个方法的类add(Integer)并定义一个Utilities.createMyCollection方法:
public class Utilities {
(...)
public static class MyCollection {
private List<Integer> myList = new LinkedList<>();
public void add(Integer o) {
myList.add(o);
}
public String toString() {
return myList.toString();
}
}
public static MyCollection createMyCollection() {
return new MyCollection();
}
(...)
}
Run Code Online (Sandbox Code Playgroud)
然而,当我在 FXML 文件中替换 createMyCollection 时,我收到消息“MyCollections 没有默认属性。将 MyCollection 内容放入属性元素中。”
这让我想知道如何为用户定义的类声明默认属性,以及如何List已经拥有一个默认属性。
这是所有文件(除了上面的 Utilities.java 之外):
FXMLBasicFeatures.fxml:
<?import javafx.scene.paint.Color?>
<?import projavafx.fxmlbasicfeatures.FXMLBasicFeaturesBean?>
<?import projavafx.fxmlbasicfeatures.Utilities?>
<?import java.lang.Double?>
<?import java.lang.Integer?>
<?import java.lang.Long?>
<?import java.util.HashMap?>
<?import java.lang.String?>
<FXMLBasicFeaturesBean name="John Smith"
flag="true"
count="12345"
xmlns:fx="http://javafx.com/fxml/1">
<address>12345 Main St.</address>
<foreground>#ff8800</foreground>
<background>
<Color red="0.0" green="1.0" blue="0.5"/>
</background>
<price>
<Double fx:value="3.1415926"/>
</price>
<discount>
<Utilities fx:constant="TEN_PCT"/>
</discount>
<sizes>
<Utilities fx:factory="createList">
<Integer fx:value="1"/>
<Integer fx:value="2"/>
<Integer fx:value="3"/>
</Utilities>
</sizes>
<profits>
<HashMap q1="1000" q2="1100" q3="1200" a4="1300"/>
</profits>
<fx:define>
<Long fx:id="inv" fx:value="9765625"/>
</fx:define>
<inventory>
<fx:reference source="inv"/>
</inventory>
<products>
<String fx:value="widget"/>
<String fx:value="gadget"/>
<String fx:value="models"/>
</products>
<abbreviations CA="California" NY="New York" FL="Florida" MO="Missouri"/>
</FXMLBasicFeaturesBean>
Run Code Online (Sandbox Code Playgroud)
FXMLBasicFeaturesBean.java:
package projavafx.fxmlbasicfeatures;
import javafx.scene.paint.Color;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class FXMLBasicFeaturesBean {
private String name;
private String address;
private boolean flag;
private int count;
private Color foreground;
private Color background;
private Double price;
private Double discount;
private List<Integer> sizes;
private Map<String, Double> profits;
private Long inventory;
private List<String> products = new ArrayList<String>();
private Map<String, String> abbreviations = new HashMap<>();
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public boolean isFlag() {
return flag;
}
public void setFlag(boolean flag) {
this.flag = flag;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public Color getForeground() {
return foreground;
}
public void setForeground(Color foreground) {
this.foreground = foreground;
}
public Color getBackground() {
return background;
}
public void setBackground(Color background) {
this.background = background;
}
public Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
public Double getDiscount() {
return discount;
}
public void setDiscount(Double discount) {
this.discount = discount;
}
public List<Integer> getSizes() {
return sizes;
}
public void setSizes(List<Integer> sizes) {
this.sizes = sizes;
}
public Map<String, Double> getProfits() {
return profits;
}
public void setProfits(Map<String, Double> profits) {
this.profits = profits;
}
public Long getInventory() {
return inventory;
}
public void setInventory(Long inventory) {
this.inventory = inventory;
}
public List<String> getProducts() {
return products;
}
public Map<String, String> getAbbreviations() {
return abbreviations;
}
@Override
public String toString() {
return "FXMLBasicFeaturesBean{" +
"name='" + name + '\'' +
",\n\taddress='" + address + '\'' +
",\n\tflag=" + flag +
",\n\tcount=" + count +
",\n\tforeground=" + foreground +
",\n\tbackground=" + background +
",\n\tprice=" + price +
",\n\tdiscount=" + discount +
",\n\tsizes=" + sizes +
",\n\tprofits=" + profits +
",\n\tinventory=" + inventory +
",\n\tproducts=" + products +
",\n\tabbreviations=" + abbreviations +
'}';
}
}
Run Code Online (Sandbox Code Playgroud)
FXMLBasicFeaturesMain.java:
package projavafx.fxmlbasicfeatures;
import javafx.fxml.FXMLLoader;
import java.io.IOException;
public class FXMLBasicFeaturesMain {
public static void main(String[] args) throws IOException {
FXMLBasicFeaturesBean bean = FXMLLoader.load(
FXMLBasicFeaturesMain.class.getResource(
"/projavafx/fxmlbasicfeatures/FXMLBasicFeatures.fxml")
);
System.out.println("bean = " + bean);
}
}
Run Code Online (Sandbox Code Playgroud)
实际上这里发生了几个不同的问题。如您所知,基本用法是FXMLLoader通过 JavaBean 命名方案查找经典风格的属性。所以如果你有课
public class Bean {
private String text ;
public void setText(String text) {
this.text = text ;
}
public String getText() {
return text ;
}
}
Run Code Online (Sandbox Code Playgroud)
然后(因为该类有一个默认的无参数构造函数),您可以Bean在 FXML 中实例化:
<Bean>
Run Code Online (Sandbox Code Playgroud)
您可以setText通过引用该属性text作为属性来调用该方法:
<Bean text="Some text"/>
Run Code Online (Sandbox Code Playgroud)
或作为属性元素:
<Bean>
<text>
<String fx:value="Some text"/>
</text>
</Bean>
Run Code Online (Sandbox Code Playgroud)
实例java.util.List得到特殊对待。如果属性名称与只读List属性java.util.List匹配:即具有get...方法但没有方法的类型的属性set...,FXML 中的子节点将被传递到相应的List实例add(...)方法。
因此,如果我们将这样的属性添加到Bean:
import java.util.List ;
import java.util.ArrayList ;
public class Bean {
private String text ;
private List<String> elements ;
public Bean() {
this.elements = new ArrayList<>();
}
public List<String> getElements() {
return elements ;
}
public void setText(String text) {
this.text = text ;
}
public String getText() {
return text ;
}
}
Run Code Online (Sandbox Code Playgroud)
然后我们可以在 FXML 中填充列表:
<Bean text="Some text">
<elements>
<String fx:value="One"/>
<String fx:value="Two"/>
<String fx:value="Three"/>
</elements>
<Bean>
Run Code Online (Sandbox Code Playgroud)
您提到的另一个问题是“默认属性”。您可以通过使用类上的@DefaultProperty注释来指定类的默认属性,并指定被视为默认属性的名称:
import java.util.List ;
import java.util.ArrayList ;
@DefaultProperty("text")
public class Bean {
private String text ;
private List<String> elements ;
public Bean() {
this.elements = new ArrayList<>();
}
public List<String> getElements() {
return elements ;
}
public void setText(String text) {
this.text = text ;
}
public String getText() {
return text ;
}
}
Run Code Online (Sandbox Code Playgroud)
现在,如果您在 FXML 中指定实例元素的子元素<Bean>,而不指定属性,则这些元素将用作默认属性的值:
<Bean>
<String fx:value="Some Text"/>
</Bean>
Run Code Online (Sandbox Code Playgroud)
setText("Some Text")将在实例上调用Bean。
当然,您可以结合这些想法并使List实例成为默认属性(这本质上就是布局容器的工作方式:Pane定义"children"为其默认属性):
import java.util.List ;
import java.util.ArrayList ;
@DefaultProperty("elements")
public class Bean {
private String text ;
private List<String> elements ;
public Bean() {
this.elements = new ArrayList<>();
}
public List<String> getElements() {
return elements ;
}
public void setText(String text) {
this.text = text ;
}
public String getText() {
return text ;
}
}
Run Code Online (Sandbox Code Playgroud)
现在你可以做
<Bean text="Some Text">
<String fx:value="One"/>
<String fx:value="Two" />
<String fx:value="Three" />
</Bean>
Run Code Online (Sandbox Code Playgroud)
将用 填充elements列表["One", "Two", "Three"]。
| 归档时间: |
|
| 查看次数: |
1607 次 |
| 最近记录: |