Uses of Class
com.sun.lwuit.List

Packages that use List
com.sun.lwuit Main widget package containing the component/container "composite" similar both in terminology and design to Swing/AWT. 
com.sun.lwuit.html The HTML package allows rendering XHTML-MP 1.0 documents including WCSS support. 
com.sun.lwuit.list Lists are highly customizable and serve as the basis for ComboBox and other components (such as carousels etc) they employ a similar MVC approach to Swing including the renderer pattern. 
com.sun.lwuit.plaf Look of the application can be fully customized via this package, it represents a rendering layer that can be plugged in separately in runtime and themed to provide any custom look. 
com.sun.lwuit.spinner Spinners allows picking of simple sequential values similarly to combo boxes but of a much wider value set. 
com.sun.lwuit.util Utility features that are either too domain specific or don't "fit" into any other packages. 
 

Uses of List in com.sun.lwuit
 

Subclasses of List in com.sun.lwuit
 class ComboBox
          A combo box is a list that allows only one selection at a time, when a user clicks the combo box a popup button with the full list of elements allows the selection of a single element.
 

Methods in com.sun.lwuit that return List
protected  List MenuBar.createCommandList(java.util.Vector commands)
          Creates the list component containing the commands within the given vector used for showing the menu dialog
protected  List ComboBox.createPopupList()
          Creates the list object used within the popup dialog.
 

Methods in com.sun.lwuit with parameters of type List
protected  Dialog ComboBox.createPopupDialog(List l)
          Subclasses can override this method to change the creation of the dialog
protected  Command ComboBox.showPopupDialog(Dialog popupDialog, List l)
          Shows the popup dialog for the combo box and returns the resulting command.
 

Uses of List in com.sun.lwuit.html
 

Methods in com.sun.lwuit.html with parameters of type List
 void HTMLCallback.selectionChanged(int oldSelected, int newSelected, HTMLComponent htmlC, List list, HTMLElement element)
          Called when the user selects an item in a List inside the HTMLComponent Note: Selection is traversing through the items - once the user has actually decided, an ActionEvent will be sent as well This method will be called only if HTMLComponent.isEventsEnabled() is true
 void DefaultHTMLCallback.selectionChanged(int oldSelected, int newSelected, HTMLComponent htmlC, List list, HTMLElement element)
          Called when the user selects an item in a List inside the HTMLComponent Note: Selection is traversing through the items - once the user has actually decided, an ActionEvent will be sent as well This method will be called only if HTMLComponent.isEventsEnabled() is true
 

Uses of List in com.sun.lwuit.list
 

Methods in com.sun.lwuit.list with parameters of type List
 Component ListCellRenderer.getListCellRendererComponent(List list, java.lang.Object value, int index, boolean isSelected)
          Returns a component instance that is already set to render "value".
 Component GenericListCellRenderer.getListCellRendererComponent(List list, java.lang.Object value, int index, boolean isSelected)
           
 Component DefaultListCellRenderer.getListCellRendererComponent(List list, java.lang.Object value, int index, boolean isSelected)
           
 Component ListCellRenderer.getListFocusComponent(List list)
          Returns a component instance that is painted under the currently focused renderer and is animated to provide smooth scrolling.
 Component GenericListCellRenderer.getListFocusComponent(List list)
           
 Component DefaultListCellRenderer.getListFocusComponent(List list)
           
 

Uses of List in com.sun.lwuit.plaf
 

Methods in com.sun.lwuit.plaf with parameters of type List
abstract  void LookAndFeel.drawComboBox(Graphics g, List cb)
          Invoked for drawing a combo box widget
 void DefaultLookAndFeel.drawComboBox(Graphics g, List cb)
           
abstract  void LookAndFeel.drawList(Graphics g, List l)
          Invoked for drawing a list widget
 void DefaultLookAndFeel.drawList(Graphics g, List l)
           
abstract  Dimension LookAndFeel.getComboBoxPreferredSize(List box)
          Calculate the preferred size of the component
 Dimension DefaultLookAndFeel.getComboBoxPreferredSize(List cb)
           
abstract  Dimension LookAndFeel.getListPreferredSize(List l)
          Calculate the preferred size of the component
 Dimension DefaultLookAndFeel.getListPreferredSize(List l)
           
 

Uses of List in com.sun.lwuit.spinner
 

Subclasses of List in com.sun.lwuit.spinner
 class Spinner
          A spinner allows us to select a numeric, date or time value using the arrow keys in a similar way to a list or a combo box.
 

Uses of List in com.sun.lwuit.util
 

Methods in com.sun.lwuit.util with parameters of type List
protected  boolean UIBuilder.setListModel(List cmp)
          Allows a subclass to set the list model for the given component