View Javadoc

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