1 /*2 * @(#)BeanContextChildComponentProxy.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.Component ;11 12 /**13 * <p>14 * This interface is implemented by 15 * <code>BeanContextChildren</code> that have an AWT <code>Component</code>16 * associated with them.17 * </p>18 *19 * @author Laurence P. G. Cable20 * @version 1.10, 12/19/0321 * @since 1.222 *23 * @see java.beans.beancontext.BeanContext24 * @see java.beans.beancontext.BeanContextSupport25 */26 27 public interface BeanContextChildComponentProxy {28 29 /**30 * Gets the <code>java.awt.Component</code> associated with 31 * this <code>BeanContextChild</code>.32 * @return the AWT <code>Component</code> associated with 33 * this <code>BeanContextChild</code>34 */35 36 Component getComponent();37 }38