@Documented @Retention(value=RUNTIME) @Target(value=METHOD) @Repeatable(value=OnUIFocuses.class) public @interface OnUIFocus
Only 1 acceptable method pattern for this annotation.
Note: methodName
can be any name you want to use.
public void methodName(UIFocusEvent
event)
Example:
@UI(ref="Proj:/panel/subFolder/OnePanel") public class MyUIListener { public MyUIListener() { ... } // Method called when an UI component gains or loses focus. @OnUIFocus(name="myEntryField") public void onEntryFocusChange(UIFocusEvent event) { ... } }
public abstract String name
name
is either a Name without slash ('/') that is a direct child of the panel reference,
or a Relative Path from the Panel root.iizi® is a registered trademark of Mindus SARL. © Copyright Mindus SARL, 2020. All rights reserved.