gpt4 book ai didi

javafx - FXMLLoader 工厂方法可以用于用户定义的类吗?

转载 作者:行者123 更新时间:2023-12-02 21:16:36 25 4
gpt4 key购买 nike

在“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>

这是 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<>();
}
}

我的问题是:使用这些工厂方法所涉及的一般机制是什么?

我想了解 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();
}
(...)
}

但是,当我在 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>

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 +
'}';
}
}

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);
}
}

最佳答案

这里实际上存在几个不同的问题。如您所知,基本用法是 FXMLLoader通过 JavaBean 命名方案查找经典风格的属性。所以如果你有课

public class Bean {

private String text ;

public void setText(String text) {
this.text = text ;
}

public String getText() {
return text ;
}
}

然后(因为该类有一个默认的无参数构造函数),您可以实例化 Bean在 FXML 中:

<Bean>

您可以调用setText方法通过引用属性 text作为属性:

<Bean text="Some text"/>

或作为属性元素:

<Bean>
<text>
<String fx:value="Some text"/>
</text>
</Bean>

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 ;
}
}

然后我们可以在 FXML 中填充列表:

<Bean text="Some text">
<elements>
<String fx:value="One"/>
<String fx:value="Two"/>
<String fx:value="Three"/>
</elements>
<Bean>

您提到的另一个问题是“默认属性”。您可以使用 @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 ;
}
}

现在,如果您指定实例元素的子元素 <Bean>在 FXML 中,如果不指定属性,这些将用作默认属性的值:

<Bean>
<String fx:value="Some Text"/>
</Bean>

将调用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 ;
}
}

现在你可以做

<Bean text="Some Text">
<String fx:value="One"/>
<String fx:value="Two" />
<String fx:value="Three" />
</Bean>

将填充 elements列表为 ["One", "Two", "Three"] .

关于javafx - FXMLLoader 工厂方法可以用于用户定义的类吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30267070/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com