Package autotest.afe

Examples of autotest.afe.IRadioButton$RadioButtonImpl


        groupNameCounter++;
        return "group" + Integer.toString(groupNameCounter);
    }

    public void addChoice(String choice) {
        IRadioButton button = display.generateRadioButton(groupName, choice);
        if (radioButtons.isEmpty()) {
            // first button in this group
            defaultButton = button;
            button.setValue(true);
        }
        radioButtons.add(button);
    }
View Full Code Here

TOP

Related Classes of autotest.afe.IRadioButton$RadioButtonImpl

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.