1. /*
  2. * @(#)BeanContextContainerProxy.java 1.6 00/02/02
  3. *
  4. * Copyright 1998-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.beans.beancontext;
  11. import java.awt.Container;
  12. /**
  13. * <p>
  14. * This interface is implemented by BeanContexts' that have an AWT Container
  15. * associated with them.
  16. * </p>
  17. *
  18. * @author Laurence P. G. Cable
  19. * @version 1.6, 02/02/00
  20. * @since 1.2
  21. *
  22. * @seealso java.beans.beancontext.BeanContext
  23. * @seealso java.beans.beancontext.BeanContextSupport
  24. */
  25. public interface BeanContextContainerProxy {
  26. /**
  27. * Gets the <code>java.awt.Container</code> associated
  28. * with this <code>BeanContext</code>.
  29. * @return the <code>java.awt.Container</code> associated
  30. * with this <code>BeanContext</code>.
  31. */
  32. Container getContainer();
  33. }