01: package fr.aliacom.common.ui;
02:
03: import fr.aliacom.form.common.IFormComponent;
04: import fr.aliacom.form.common.events.IRadioSelectionListener;
05:
06: /**
07: * @author tom
08: *
09: * (C) 2001, 2003 Thomas Cataldo
10: */
11: public interface IRadioButton extends IFormComponent {
12:
13: void setSelected(boolean selected);
14:
15: void addSelectionListener(IRadioSelectionListener isl);
16:
17: /**
18: * Method getAction.
19: */
20: String getAction();
21:
22: }
|