01: /*
02: * Created on 15-Jan-2006
03: */
04: package uk.org.ponder.beanutil.support;
05:
06: import uk.org.ponder.beanutil.BeanLocator;
07:
08: /** A BeanLocator that returns no beans */
09:
10: public class NullBeanLocator implements BeanLocator {
11: // NullBeanLocators are stateless, use this instance globally.
12: public static BeanLocator instance = new NullBeanLocator();
13:
14: public Object locateBean(String path) {
15: return null;
16: }
17:
18: }
|