Re: [picocontainer-dev] child container API
Paul Hammant <[email protected]>
| Newsgroups | gmane.comp.java.picocontainer.devel |
|---|---|
| Message-ID | <[email protected]> |
Mike, > > > parent = new PicoBuilder().with().with().with().build(); > > > > child = new PicoBuilder(parent).with().with().build(); That's done already :) Parent does not know of child though, whereas child knows of parent. Could have - child = new PicoBuilder(parent).asChild().with().with().build(); - I guess. - Paul