/** * Sets the option for the Radio Button */ public void setOption(SOption sOpt) { _opt = sOpt; setText(_opt.getDisplay()); }
/** * Creates a new Radio Button with the specified option */ public SRadioButton(SOption opt) { super(opt.getDisplay()); _opt = opt; }