Package org.apache.harmony.x.swing.text.html.form

Examples of org.apache.harmony.x.swing.text.html.form.FormOption


        }
    }

    public static void resetMultipleSelection(final FormSelectListModel model) {
        Object item;
        FormOption option;

        ListSelectionModel selectionModel = model.getSelectionModel();
        selectionModel.clearSelection();

        for (int i = 0; i < model.getSize(); i++) {
            item = model.getElementAt(i);

            if (item instanceof FormOption) {
                option = (FormOption) item;
                selectElement(option, true, true);
                if (option.isSelected()) {
                    selectionModel.addSelectionInterval(i, i);
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.harmony.x.swing.text.html.form.FormOption

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.