Package DisplayProject.table

Examples of DisplayProject.table.ListElementCellEditor


     * @param elements the list elements
     * @return An editor that can be used in a table
     */
    public static DefaultCellEditor newDropListEditor(ListElement[] elements)
    {
        return new ListElementCellEditor(newDropList(elements));
    }
View Full Code Here


     * @param comboBox
     * @return A cell editor
     */
    public static ListElementCellEditor newDropListEditor(AutoResizingComboBox comboBox)
    {
        return new ListElementCellEditor(comboBox);
    }
View Full Code Here

     * @param elements the list elements
     * @return An editor that can be used in a table
     */
    public static DefaultCellEditor newDropListEditor(ListElement[] elements)
    {
        return new ListElementCellEditor(newDropList(elements));
    }
View Full Code Here

     * @param comboBox
     * @return A cell editor
     */
    public static ListElementCellEditor newDropListEditor(AutoResizingComboBox comboBox)
    {
        return new ListElementCellEditor(comboBox);
    }
View Full Code Here

TOP

Related Classes of DisplayProject.table.ListElementCellEditor

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.