|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD | |||||||
org.jdesktop.html.form.Inputorg.jdesktop.html.form.RadioInput
public interface RadioInput extends Input
Represents a collection of HTML "radio" type input fields with the same name.
An HTML form with such inputs might look like:
<form>
<input type="radio" name="letter" value="a" />
<input type="radio" name="letter" value="b" />
<input type="radio" name="letter" value="c" checked="checked" />
<input type="radio" name="letter" value="d" />
<input type="radio" name="letter" value="e" />
</form>
The above block of HTML would corrospond to a RadioInput with the
following values:
| Method Summary | |
|---|---|
String[]
|
getValues()
Gets the set of valid values. |
| Methods inherited from interface Input | |
|---|---|
| getName, getValue, setValue |
| Method Detail |
|---|
public String[] getValues()
Groovy Documentation