FileDocCategorySizeDatePackage
GroupExample.javaAPI DocExample1105Sun Oct 31 08:45:00 GMT 2004None

GroupExample

public class GroupExample extends Composite

Fields Summary
final Button
b1
final Button
b2
final Button
b3
Constructors Summary
public GroupExample(Composite c, int style)

        super(c, SWT.NO_BACKGROUND );
        this.setSize(110, 75);
        this.setLayout(new FillLayout());
        final Group g = new Group(this, style);
        g.setSize(110, 75);
        g.setText("Options Group");
        b1 = new Button(g, SWT.RADIO);
        b1.setBounds(10,20,75, 15);
        b1.setText("Option One");
        b2 = new Button(g, SWT.RADIO);
        b2.setBounds(10,35,75, 15);
        b2.setText("Option Two");
        b3 = new Button(g, SWT.RADIO);
        b3.setBounds(10,50,80, 15);
        b3.setText("Option Three");
    
Methods Summary
public java.lang.StringgetSelected()

        if(b1.getSelection()) return "Option One";
        if(b2.getSelection()) return "Option Two";
        if(b3.getSelection()) return "Option Three";
        return "None Selected";