01: /*
02: * Created on 3 Aug 2007
03: */
04: package uk.org.ponder.mapping;
05:
06: /**
07: * A structure of "shells" through a bean model. The 0th element of
08: * <code>shells</code> will be the bean root requested, segments[0] will be a
09: * property request on this bean. The array of shells will be filled out until a
10: * property can no longer be navigated.
11: *
12: * @author Antranig Basman (antranig@caret.cam.ac.uk)
13: *
14: */
15:
16: public class ShellInfo {
17: public String[] segments;
18: public Object[] shells;
19: }
|