ItemCommandListenerpublic interface ItemCommandListener A listener type for receiving notification of commands that have been
invoked on {@link Item} objects. An Item can have
Commands associated with
it. When such a command is invoked, the application is notified by having
the {@link #commandAction commandAction()} method called on the
ItemCommandListener that had been set on the
Item with a call to
{@link Item#setItemCommandListener setItemCommandListener()}. |
Methods Summary |
---|
public void | commandAction(Command c, Item item)Called by the system to indicate that a command has been invoked on a
particular item.
|
|