26 package java.beans.beancontext; 27 28 import java.awt.Container; 29 30 /** 31 * <p> 32 * This interface is implemented by BeanContexts' that have an AWT Container 33 * associated with them. 34 * </p> 35 * 36 * @author Laurence P. G. Cable 37 * @since 1.2 38 * 39 * @see java.beans.beancontext.BeanContext 40 * @see java.beans.beancontext.BeanContextSupport 41 */ 42 43 public interface BeanContextContainerProxy { 44 45 /** 46 * Gets the <code>java.awt.Container</code> associated 47 * with this <code>BeanContext</code>. 48 * @return the <code>java.awt.Container</code> associated 49 * with this <code>BeanContext</code>. 50 */ 51 Container getContainer(); 52 } | 26 package java.beans.beancontext; 27 28 import java.awt.Container; 29 30 /** 31 * <p> 32 * This interface is implemented by BeanContexts' that have an AWT Container 33 * associated with them. 34 * </p> 35 * 36 * @author Laurence P. G. Cable 37 * @since 1.2 38 * 39 * @see java.beans.beancontext.BeanContext 40 * @see java.beans.beancontext.BeanContextSupport 41 */ 42 43 public interface BeanContextContainerProxy { 44 45 /** 46 * Gets the {@code java.awt.Container} associated 47 * with this {@code BeanContext}. 48 * @return the {@code java.awt.Container} associated 49 * with this {@code BeanContext}. 50 */ 51 Container getContainer(); 52 } |