Searched defs:JList (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java61 * It's easy to display an array or Vector of objects, using the {@code JList}
66 * // Create a JList that displays strings from an array
69 * JList<String> myList = new JList<String>(data);
71 * // Create a JList that displays the superclasses of JList.class, by
75 * Class<JList> rootClass = javax.swing.JList.class;
79 * JList<Class<?>> myList = new JList<Clas
282 public class JList<E> extends JComponent implements Scrollable, Accessible class in inherits:JComponent,Scrollable,Accessible
418 public JList(ListModel<E> dataModel) method in class:JList
453 public JList(final E[] listData) method in class:JList
478 public JList(final Vector<? extends E> listData) { method in class:JList
491 public JList() { method in class:JList
[all...]

Completed in 50 milliseconds