01: /*
02: * Created on Oct 22, 2005
03: */
04: package uk.org.ponder.beanutil;
05:
06: /** A writeable extension to the BeanLocator interface, that has the power
07: * to unlink a bean appearing at the supplied root path.
08: * @author Antranig Basman (antranig@caret.cam.ac.uk)
09: *
10: */
11: public interface WriteableBeanLocator extends BeanLocator {
12: public boolean remove(String beanname);
13:
14: public void set(String beanname, Object toset);
15: }
|