Package com.iizix.api.ui
Annotation Interface OnUIBack
Annotation for tagging methods to receive UI Back events that is fired when the user presses the Back button.
Only 1 acceptable method pattern for this annotation.
Note: methodName
can be any name you want to use.
public void methodName(
UIActionEvent
event)
Example:
@Panel(ref="Proj:/panel/subFolder/OnePanel") public class MyUIListener { public MyUIListener() { ... } // Method invoked when the user presses the "Back button". // The "name" is always "", i.e. the relative panel reference. @OnUIBack(name="") public void onBack(UIBackEvent event) { ... } }
- Author:
- Christopher Mindus
Required Element Summary
Element Details
name
String nameThe Name or Relative Path of the Property to associate with the method. Thename
is 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".