Annotation Interface ParamsMap


@Target({PARAMETER,FIELD,METHOD}) @Retention(RUNTIME) public @interface ParamsMap
Fields, parameters and methods annotated with this annotation will be injected with a map of all parameters when using the FulibFxApp.show(String, Map) method.

If the annotation is used on a field, the field will be injected with the parameter map.

If the annotation is used on a method, the method will be called with the parameter map as an argument.

If the annotation is used on a method argument, the argument will be injected with the parameter map (method has to be annotated with OnRender or OnInit).