1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package net.wotonomy.web; import net.wotonomy.foundation.NSDictionary; public class WORadioButton extends WOCheckBox { public WORadioButton() { super(); } public WORadioButton(String aName, NSDictionary assocs, WOElement template) { super(aName, assocs, template); } protected String inputType() { return "RADIO"; } }