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

}