01: /*
02: * Created on May 11, 2006
03: */
04: package uk.org.ponder.rsf.components;
05:
06: /**
07: * Represents the site of rendering of a choice from a UISelect component.
08: *
09: * @author Antranig Basman (antranig@caret.cam.ac.uk)
10: */
11:
12: public class UISelectChoice extends UIListMember {
13: public static UISelectChoice make(UIContainer tofill, String ID,
14: String parentFullID, int choiceindex) {
15: UISelectChoice togo = new UISelectChoice();
16: togo.ID = ID;
17: togo.parentFullID = parentFullID;
18: togo.choiceindex = choiceindex;
19: togo.willinput = true;
20: tofill.addComponent(togo);
21: return togo;
22: }
23: }
|