1 /*2 * @(#)BeanContextContainerProxy.java 1.10 03/12/193 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package java.beans.beancontext;9 10 import java.awt.Container ;11 12 /**13 * <p>14 * This interface is implemented by BeanContexts' that have an AWT Container15 * associated with them.16 * </p>17 *18 * @author Laurence P. G. Cable19 * @version 1.10, 12/19/0320 * @since 1.221 *22 * @see java.beans.beancontext.BeanContext23 * @see java.beans.beancontext.BeanContextSupport24 */25 26 public interface BeanContextContainerProxy {27 28 /**29 * Gets the <code>java.awt.Container</code> associated 30 * with this <code>BeanContext</code>.31 * @return the <code>java.awt.Container</code> associated 32 * with this <code>BeanContext</code>.33 */34 Container getContainer();35 }36