final FXMLLoaderParams fxmlLoaderParams = annotated.getAnnotation(FXMLLoaderParams.class);
if (fxmlLoaderParams != null) {
// Checks the location that has been specified (if any) and uses the default
// class loader to create an URL that points to a FXML file on the classpath.
final String location = fxmlLoaderParams.location();
if (! location.equals(FXMLLoaderParams.LOCATION_UNSPECIFIED)) {
loader.setLocation(declaringClass.getResource(location));
}
final String charset = fxmlLoaderParams.charset();