01: package net.xoetrope.xui;
02:
03: /**
04: * An interface for radio button groups
05: * <p>Copyright (c) Xoeotrope Ltd., 1998-2004</p>
06: * $Revision: 1.5 $
07: */
08: public interface XRadioHolder {
09: /**
10: * Select an item
11: * @param i the index of the item to select
12: */
13: public void setSelectedObject(Object object);
14:
15: /**
16: * Get the selected object
17: * @return the selected object
18: */
19: public Object getSelectedObject();
20: }
|