01: /*
02: * Created on Mar 14, 2005
03: */
04: package uk.org.ponder.beanutil;
05:
06: /**
07: * An interface to a full bean container - this is distinguished from the
08: * @see BeanLocator interface since it is capable to navigate a full dotted
09: * bean path by evaluating properties.
10: * @author Antranig Basman (antranig@caret.cam.ac.uk)
11: *
12: */
13: public interface BeanGetter {
14: public Object getBean(String beanpath);
15: }
|