Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
692 views
in Technique[技术] by (71.8m points)

javafx - JavaFX8 fxml naming of nested controllers

Given an .fxml include like:

<fx:include fx:id="header" source="Header.fxml" />

The Java FXML docs say to create two variables like:

@FXML private HBox header;
@FXML private HeaderController headerController;

What determines the controller variable name? Is it always just the include id followed by "Controller"?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Yes the field name the controller is injected to is always constructed by concatenating the fx:id of the <fx:include> tag with "Controller".

It's "hidden" in the documentation of the FXMLLoader.CONTROLLER_SUFFIX field.

A suffix for controllers of included fxml files. The full key is stored in namespace map.

(The namespace map contains all the objects by the field name they are injected to, if such a field exists.)

You can verify that it's value is "Controller" here: https://docs.oracle.com/javase/8/javafx/api/constant-values.html#javafx.fxml.FXMLLoader.CONTROLLER_SUFFIX


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...