01: /*
02: * Created on Jan 20, 2006
03: */
04: package uk.org.ponder.rsf.components;
05:
06: import uk.org.ponder.stringutil.StringList;
07:
08: /** A UIError component has no visual function, but is used to bind a
09: * particular visual component to a set of bean paths from which exceptions
10: * will be collected to populate an error list. This component currently
11: * disused.
12: * @author Antranig Basman (antranig@caret.cam.ac.uk)
13: *
14: */
15: public class UIError extends UIComponent {
16:
17: /** A list of paths from which exceptions resulting from READS (getXxxx)will be
18: * collected.
19: */
20: public StringList outputbinding;
21: /** A list of paths from which exceptions resulting from WRITES (setXxxx) will be
22: * collected.
23: */
24: public StringList inputbinding;
25: }
|