Package com.iizix.api.ui
Annotation Type OnUIAction
- @Documented @Retention(RUNTIME) @Target(METHOD) @Repeatable(OnUIActions.class) public @interface OnUIAction Annotation for tagging methods to receive UI Action events.- Only 1 acceptable method pattern for this annotation. 
 Note:- methodNamecan be any name you want to use.- public void methodName(- UIActionEventevent)
 - Example: - @Panel(ref="Proj:/panel/subFolder/OnePanel") public class MyUIListener { public MyUIListener() { ... } // Method called when a UI action component (button, menu item, etc) action is fired. @OnUIAction(name="myButton") public void onButtonAction(UIActionEvent event) { ... } }- Author:
- Christopher Mindus
 
- Required Element Summary- Required Elements - Modifier and Type - Required Element - Description - java.lang.String- nameThe Name or Relative Path of the Property to associate with the method.
 
- Element Detail- name- java.lang.String name The Name or Relative Path of the Property to associate with the method. The- nameis either a Name without slash ('/') that is a direct child of the panel reference, or a Relative Path from the Panel root.- Returns:
- The Property Name path from the panel base "ref" reference specification, e.g. "myButton" or "container/..etc../myMenuItem".