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 label from a UISelect component.
08: *
09: * @author Antranig Basman (antranig@caret.cam.ac.uk)
10: *
11: */
12:
13: public class UISelectLabel extends UIBasicListMember {
14: public static UISelectLabel make(UIContainer tofill, String ID,
15: String parentFullID, int choiceindex) {
16: UISelectLabel togo = new UISelectLabel();
17: togo.ID = ID;
18: togo.parentFullID = parentFullID;
19: togo.choiceindex = choiceindex;
20: tofill.addComponent(togo);
21: return togo;
22: }
23: }
|