| javax.microedition.lcdui.ItemCommandListener
All known Subclasses: com.sun.midp.appmanager.AppManagerUI,
ItemCommandListener | public interface ItemCommandListener (Code) | | A listener type for receiving notification of commands that have been
invoked on
Item objects. An Item can have
Commands associated with
it. When such a command is invoked, the application is notified by having
the
ItemCommandListener.commandAction commandAction() method called on the
ItemCommandListener that had been set on the
Item with a call to
Item.setItemCommandListener setItemCommandListener() .
|
Method Summary | |
public void | commandAction(Command c, Item item) Called by the system to indicate that a command has been invoked on a
particular item. |
commandAction | public void commandAction(Command c, Item item)(Code) | | Called by the system to indicate that a command has been invoked on a
particular item.
Parameters: c - the Command that was invoked Parameters: item - the Item on which the command was invoked |
|
|