summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WORadioButton.java
blob: 386218c2f40ed4bad23e2b744f59fa6b448b04a9 (plain)
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";
    }

}