01: /*
02: * Created on 7 Mar 2007
03: */
04: package uk.org.ponder.rsf.components;
05:
06: /** Tag node representing that the rendering behaviour of this UIListMember
07: * is expected to be identical with UIBound. The only current
08: * non-UIBasicListMember is UISelectChoice */
09:
10: public class UIBasicListMember extends UIListMember {
11: public static UIBasicListMember makeBasic(UIContainer tofill,
12: String ID, String parentFullID, int choiceindex) {
13: UIBasicListMember togo = new UIBasicListMember();
14: togo.ID = ID;
15: togo.parentFullID = parentFullID;
16: togo.choiceindex = choiceindex;
17: togo.willinput = true;
18: tofill.addComponent(togo);
19: return togo;
20: }
21: }
|