Uses of Class
bluegammon.gui.menu.PageItem

Packages that use PageItem
bluegammon.gui The bluegammon.gui package contains classes related to presentation and user interaction of the Bluegammon game. 
bluegammon.gui.menu The bluegammon.gui.menu package is a standalone package for drawing menus on a canvas in J2ME. 
 

Uses of PageItem in bluegammon.gui
 

Methods in bluegammon.gui with parameters of type PageItem
 void MenuCanvas.itemAction(MenuPage page, PageItem item)
          ItemAction implementation, called from items in this menu.
 void MenuCanvas.itemSelected(MenuPage page, PageItem oldItem, PageItem newItem)
           
 void MenuCanvas.actionCalled(MenuPage page, PageItem item, ItemAction action)
           
 void BluetoothServerWorkflow.itemAction(MenuPage page, PageItem item)
          Called when user sets up a server.
 void BluetoothDevicePage.addItem(PageItem item)
          Adds an item and repaints.
 void BluetoothClientWorkflow.itemAction(MenuPage page, PageItem item)
          Called when user selects an item in a page.
 

Uses of PageItem in bluegammon.gui.menu
 

Subclasses of PageItem in bluegammon.gui.menu
 class BinaryPageItem
          An abstract item that can be set to true or false.
 

Methods in bluegammon.gui.menu that return PageItem
 PageItem MenuPage.itemAt(int index)
          Returns item at specified index.
 PageItem Menu.getSelectedItem()
          Returns selected item or null if no item is currently selected.
 

Methods in bluegammon.gui.menu with parameters of type PageItem
 void MenuPage.addItem(PageItem item)
          Adds an item to this page.
 void MenuPage.removeItem(PageItem item)
          Removes an item from this page.
 int MenuPage.getIndex(PageItem item)
          Returns the index of specified item.
 void MenuListener.itemSelected(MenuPage page, PageItem oldItem, PageItem newItem)
          Called when a item is selected in a page.
 void MenuListener.actionCalled(MenuPage page, PageItem item, ItemAction action)
          Called when an ItemAction is invoked.
 void ItemAction.itemAction(MenuPage page, PageItem item)
          Called when user selects an item in a page.
 void BinaryPageItem.itemAction(MenuPage page, PageItem item)
          Toggles the boolean value by calling getBoolean and setBoolean.