01: /*****************************************************************************
02: * Copyright (C) NanoContainer Organization. All rights reserved. *
03: * ------------------------------------------------------------------------- *
04: * The software in this package is published under the terms of the BSD *
05: * style license a copy of which has been included with this distribution in *
06: * the LICENSE.txt file. *
07: * *
08: * Original code by Paul Hammant *
09: *****************************************************************************/package org.nanocontainer;
10:
11: import org.picocontainer.MutablePicoContainer;
12: import org.picocontainer.PicoContainer;
13:
14: /**
15: * @author Paul Hammant
16: * @version $Revision: 1635 $
17: */
18: public interface NanoPicoContainer extends MutablePicoContainer,
19: NanoContainer {
20:
21: MutablePicoContainer makeChildContainer(String name);
22:
23: void addChildContainer(String name, PicoContainer child);
24:
25: }
|