Uses of Interface
org.xith3d.ui.hud.base.AbstractList

Packages that use AbstractList
org.xith3d.ui.hud.base   
org.xith3d.ui.hud.listeners   
org.xith3d.ui.hud.widgets   
 

Uses of AbstractList in org.xith3d.ui.hud.base
 

Subinterfaces of AbstractList in org.xith3d.ui.hud.base
 interface AbstractTextList<T extends TextWidget>
          This a simple AbstractList extension, that adds methods for adding items as String.
 

Uses of AbstractList in org.xith3d.ui.hud.listeners
 

Methods in org.xith3d.ui.hud.listeners with parameters of type AbstractList
 void ListSelectionListener.onListItemClicked(AbstractList<Item> list, Item item)
          This event is fired, when a List Item is clicked.
 void WidgetEventsReceiverAdapter.onListItemClicked(AbstractList<ListItem> list, ListItem item)
          This event is fired, when a List Item is clicked.
 void ListSelectionListener.onListSelectionChanged(AbstractList<Item> list, Item oldSelection, Item newSelection)
          This event is fired, when the List's selection has changed.
 void WidgetEventsReceiverAdapter.onListSelectionChanged(AbstractList<ListItem> list, ListItem oldSelection, ListItem newSelection)
          This event is fired, when the List's selection has changed.
 

Uses of AbstractList in org.xith3d.ui.hud.widgets
 

Classes in org.xith3d.ui.hud.widgets that implement AbstractList
 class ComboBox
          A ComboBox is a bordered Label with a Button on the right, that pops up a List widget and displays the current selected Item's text.
 class List<Item extends Widget>
          A Scrollable List Widget able to hold some of Widgets.
 class TextList
          This is a very simple List-Widget extension, that forces the List to take Labels as items.