1. /*
  2. * @(#)BeanContextChildComponentProxy.java 1.2 01/11/29
  3. *
  4. * Copyright 2002 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.Component;
  9. /**
  10. * <p>
  11. * This interface is implemented by BeanContextChildren that have an AWT Component
  12. * associated with them.
  13. * </p>
  14. *
  15. * @author Laurence P. G. Cable
  16. * @version 1.2
  17. * @since JDK1.2
  18. *
  19. * @seealso java.beans.beancontext.BeanContext
  20. * @seealso java.beans.beancontext.BeanContextSupport
  21. */
  22. public interface BeanContextChildComponentProxy {
  23. /**
  24. * @return the AWT Component associated with this BeanContextChild
  25. */
  26. Component getComponent();
  27. }