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"; } }