1. /*
  2. * @(#)BeanContextContainerProxy.java 1.9 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.beans.beancontext;
  8. import java.awt.Container;
  9. /**
  10. * <p>
  11. * This interface is implemented by BeanContexts' that have an AWT Container
  12. * associated with them.
  13. * </p>
  14. *
  15. * @author Laurence P. G. Cable
  16. * @version 1.9, 01/23/03
  17. * @since 1.2
  18. *
  19. * @see java.beans.beancontext.BeanContext
  20. * @see java.beans.beancontext.BeanContextSupport
  21. */
  22. public interface BeanContextContainerProxy {
  23. /**
  24. * Gets the <code>java.awt.Container</code> associated
  25. * with this <code>BeanContext</code>.
  26. * @return the <code>java.awt.Container</code> associated
  27. * with this <code>BeanContext</code>.
  28. */
  29. Container getContainer();
  30. }