| javax.microedition.lcdui.FormLF
All known Subclasses: javax.microedition.lcdui.FormLFImpl,
Method Summary | |
void | lDelete(int itemNum, Item deletedItem) Notifies look&feel object of an item deleted in the corresponding
Form. | void | lDeleteAll() Notifies look&feel object of an item deleted in the corresponding
Form. | Item | lGetCurrentItem() Gets item currently in focus. | void | lInsert(int itemNum, Item item) Notifies look&feel object of an item deleted in the corresponding
Form. | void | lSet(int itemNum, Item item) Notifies look&feel object of an item deleted in the corresponding
Form. | void | uCallPeerStateChanged(int modelVersion, int itemPeerId, int hint) Called by Display to notify current FormLF of a change in its peer state.
If there is a ItemLF matches the peerId, the ItemLF will be called
to process this notification. | void | uItemMakeVisible(Item item) Notifies look&feel object of a call to Display.setCurrentItem()
Note that null can be passed in clear the previously set current item. |
lDelete | void lDelete(int itemNum, Item deletedItem)(Code) | | Notifies look&feel object of an item deleted in the corresponding
Form.
Parameters: itemNum - - the index of the deleted item Parameters: deletedItem - - the item deleted in the corresponding form |
lDeleteAll | void lDeleteAll()(Code) | | Notifies look&feel object of an item deleted in the corresponding
Form.
|
lGetCurrentItem | Item lGetCurrentItem()(Code) | | Gets item currently in focus.
the item currently in focus in this FormLF;if there are no items in focus, null is returned |
lInsert | void lInsert(int itemNum, Item item)(Code) | | Notifies look&feel object of an item deleted in the corresponding
Form.
Parameters: itemNum - - the index of the deleted item Parameters: item - - the item deleted in the corresponding Form |
lSet | void lSet(int itemNum, Item item)(Code) | | Notifies look&feel object of an item deleted in the corresponding
Form.
Parameters: itemNum - - the index of the item set Parameters: item - - the item set in the corresponding Form |
uCallPeerStateChanged | void uCallPeerStateChanged(int modelVersion, int itemPeerId, int hint)(Code) | | Called by Display to notify current FormLF of a change in its peer state.
If there is a ItemLF matches the peerId, the ItemLF will be called
to process this notification. Otherwise, this is treated as a
notification to this FormLF itself.
Parameters: modelVersion - the version of the peer's data model Parameters: itemPeerId - the id of the ItemLF's peer whose state has changed Parameters: hint - some value that is interpreted only between the peers |
uItemMakeVisible | void uItemMakeVisible(Item item)(Code) | | Notifies look&feel object of a call to Display.setCurrentItem()
Note that null can be passed in clear the previously set current item.
Parameters: item - - the item in the corresponding Form to be displayed |
|
|