Package com.sun.dtv.lwuit.list

Examples of com.sun.dtv.lwuit.list.DefaultListModel


     * Creates a new instance of ComboBox
     *
     * @param items set of items placed into the combo box model
     */
    public ComboBox(Vector items) {
        this(new DefaultListModel(items));
    }
View Full Code Here


     * Creates a new instance of ComboBox
     *
     * @param items set of items placed into the combo box model
     */
    public ComboBox(Object[] items) {
        this(new DefaultListModel(items));
    }
View Full Code Here

    /**
     * Constructs an empty combo box
     */
    public ComboBox() {
        this(new DefaultListModel());
    }
View Full Code Here

    /**
     * Creates a new instance of List with an empty default model
     */
    public List() {
        this(new DefaultListModel());
    }
View Full Code Here

     * Creates a new instance of List
     *
     * @param items set of items placed into the list model
     */
    public List(Vector items) {
        this(new DefaultListModel(items));
    }
View Full Code Here

     * Creates a new instance of List
     *
     * @param items set of items placed into the list model
     */
    public List(Object[] items) {
        this(new DefaultListModel(items));
    }
View Full Code Here

TOP

Related Classes of com.sun.dtv.lwuit.list.DefaultListModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.