Example usage for Java javafx.fxml FXMLLoader fields, constructors, methods, implement or subclass
The text is from its open source code.
FXMLLoader() Creates a new FXMLLoader instance. | |
FXMLLoader(URL location, ResourceBundle resources) Creates a new FXMLLoader instance. | |
FXMLLoader(URL location) Creates a new FXMLLoader instance. | |
FXMLLoader(Charset charset) Creates a new FXMLLoader instance. | |
FXMLLoader(URL location, ResourceBundle resources, BuilderFactory builderFactory, Callback Creates a new FXMLLoader instance. |
T | getController() Returns the controller associated with the root object. |
ClassLoader | getDefaultClassLoader() Returns the default class loader. |
ObservableMap | getNamespace() Returns the namespace used by this loader. |
T | getRoot() Returns the root of the object hierarchy. |
T | load() Loads an object hierarchy from a FXML document. |
T | load(InputStream inputStream) Loads an object hierarchy from a FXML document. |
T | load(URL location) Loads an object hierarchy from a FXML document. |
T | load(URL location, ResourceBundle resources) Loads an object hierarchy from a FXML document. |
void | setBuilderFactory(BuilderFactory builderFactory) Sets the builder factory used by this loader. |
void | setClassLoader(ClassLoader classLoader) Sets the classloader used by this loader and clears any existing imports. |
void | setController(Object controller) Sets the controller associated with the root object. |
void | setControllerFactory(Callback Sets the controller factory used by this loader. |
void | setLocation(URL location) Sets the location used to resolve relative path attribute values. |
void | setResources(ResourceBundle resources) Sets the resources used to resolve resource key attribute values. |
void | setRoot(Object root) Sets the root of the object hierarchy. |