001 /*****************************************************************************
002 * Copyright (C) NanoContainer Organization. All rights reserved. *
003 * ------------------------------------------------------------------------- *
004 * The software in this package is published under the terms of the BSD *
005 * style license a copy of which has been included with this distribution in *
006 * the LICENSE.txt file. *
007 * *
008 * Original code by Paul Hammant *
009 *****************************************************************************/
010
011 package org.nanocontainer;
012
013 import org.picocontainer.MutablePicoContainer;
014 import org.picocontainer.PicoContainer;
015
016 /**
017 * @author Paul Hammant
018 * @version $Revision: 1635 $
019 */
020 public interface NanoPicoContainer extends MutablePicoContainer, NanoContainer {
021
022 MutablePicoContainer makeChildContainer(String name);
023
024 void addChildContainer(String name, PicoContainer child);
025
026 }