Package blackberry.ui.dialog.select

Examples of blackberry.ui.dialog.select.SelectDialog


     * @param types the types of the values
     * @param callback the callback function
     * @return the Runnable responsible for opening the dialog
     */
    public static Runnable getSelectRunnable(boolean allowMultiple, String[] labels, boolean[] enabled, boolean[] selected, int[] types, ScriptableFunction callback) {
        IWebWorksDialog d = new SelectDialog(allowMultiple, labels, enabled, selected, types);
        return new DialogRunnable(d, callback);
    }
View Full Code Here

TOP

Related Classes of blackberry.ui.dialog.select.SelectDialog

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.