Package com.alkacon.geranium.client.ui

Examples of com.alkacon.geranium.client.ui.ToggleButton


     *
     * @param labelText the label text
     */
    public CheckBox(String labelText) {

        m_button = new ToggleButton();
        m_button.setUseMinWidth(false);
        m_button.setButtonStyle(ButtonStyle.TRANSPARENT, null);
        m_button.setImageClass(CSS.checkBoxImage());
        if (labelText != null) {
            m_button.setText(labelText);
View Full Code Here

TOP

Related Classes of com.alkacon.geranium.client.ui.ToggleButton

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.