|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Provides a listener interface for receiving Control action events. The usage model is similar to the java.awt.event.ActionListener interface.
The class that is interested in processing an action event implements this interface, and the object created with that class is registered with a control, using the controls's setActionListener method. When the action event occurs, that object's onAction method is invoked.
public MyPage extends Page {
public ActionLink link = new ActionLink();
public MyPage() {
link.setActionListener(new ActionListener() {
public boolean onAction(Control source) {
return onLinkClick();
}
});
}
public boolean onLinkClick() {
..
return true;
}
}
Method Summary | |
boolean |
onAction(Control source)
Return true if the control and page processing should continue, or false otherwise. |
Method Detail |
public boolean onAction(Control source)
source
- the source of the action event
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |