- 
 public interface InitializableController initialization interface.NOTE This interface has been superseded by automatic injection of locationandresourcesproperties into the controller.FXMLLoaderwill now automatically call any suitably annotated no-arginitialize()method defined by the controller. It is recommended that the injection approach be used whenever possible.- Since:
- JavaFX 2.0
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinitialize(URL location, ResourceBundle resources)Called to initialize a controller after its root element has been completely processed.
 
- 
- 
- 
Method Detail- 
initializevoid initialize(URL location, ResourceBundle resources) Called to initialize a controller after its root element has been completely processed.- Parameters:
- location- The location used to resolve relative paths for the root object, or- nullif the location is not known.
- resources- The resources used to localize the root object, or- nullif the root object was not localized.
 
 
- 
 
-