Examples of WHRadioButton


Examples of org.webharvest.gui.component.WHRadioButton

        JPanel directionsPanel = new JPanel(new GridLayout(3, 1));
        directionsPanel.setBorder( new TitledBorder("Direction") );

        ButtonGroup group = new ButtonGroup();

        this.forwardRadioButton = new WHRadioButton("Forward");
        this.forwardRadioButton.setSelected(true);
        this.backwordRadioButton = new WHRadioButton("Backword");
        this.entireScopeRadioButton = new WHRadioButton("Entire scope");

        group.add(this.forwardRadioButton);
        group.add(this.backwordRadioButton);
        group.add(this.entireScopeRadioButton);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.