About 6,500 results
Open links in new tab
  1. How to Use Lists (The Java™ Tutorials > Creating a GUI With …

    In addition to lists, the following Swing components present multiple selectable items to the user: combo boxes, menus, tables, and groups of check boxes or radio buttons. To display …

  2. Swing Examples - Using listboxes

    Following example showcase how to use standard listboxes in a Java Swing application.

  3. Java Swing | JList with examples - GeeksforGeeks

    Apr 16, 2021 · JList is part of Java Swing package . JList is a component that displays a set of Objects and allows the user to select one or more items . JList inherits JComponent class. …

  4. JList basic tutorial and examples - CodeJava.net

    Jul 6, 2019 · JList is a Swing component with which we can display a list of elements. This component also allows the user to select one or more elements visually. This article shows …

  5. JList, JListBox - Swing Scrolling List Controls

    A list box is a user-interface component that presents a scrollable list of items from which the user can select one or more items. It's desirable for the list to allow the items to be rendered in …

  6. ListBox - IIT Kanpur

    ListBox (java.awt.Frame owner) Constructs the standard modal ListBox dialog with 'owner' as its owner. ListBox (java.awt.Frame owner, boolean modal) Constructs a ListBox dialog with …

  7. Swing ListBox - SPLessons

    Key Points Swing ListBox - mainFrame.setVisible(true); is utilized to visible the frame window. Swing ListBox - JList component is utilized to expose more object to an user.

    Missing:
    • java
    Must include:
  8. Listbox - docs.zkoss.org

    Don’t use a list box, when a grid is a better choice. The appearances of list boxes and grids are similar, but the listbox should only be used to represent a list of selectable items. Users are …

  9. JList (Java Platform SE 8 ) - Oracle

    Simple, dynamic-content, JList applications can use the DefaultListModel class to maintain list elements. This class implements the ListModel interface and also provides a java.util.Vector …

  10. SWING - JList Class

    Constructs a JList that displays the elements in the specified array. Constructs a JList that displays the elements in the specified Vector. Here is the list of methods in Swing JList class. …