01: /*
02: * Created on 7 Mar 2007
03: */
04: package uk.org.ponder.rsf.components;
05:
06: /** Base class for a family of components representing the render site
07: * of a distributed member of a functionally single list-valued UIBound
08: * component.
09: * @author Antranig Basman (amb26@ponder.org.uk)
10: *
11: */
12:
13: public class UIListMember extends UIComponent {
14: public String parentFullID;
15:
16: public int choiceindex;
17: public boolean willinput;
18: }
|