KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > beans > beancontext > BeanContextChildComponentProxy


1 /*
2  * @(#)BeanContextChildComponentProxy.java 1.10 03/12/19
3  *
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 JavaDoc;
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. Cable
20  * @version 1.10, 12/19/03
21  * @since 1.2
22  *
23  * @see java.beans.beancontext.BeanContext
24  * @see java.beans.beancontext.BeanContextSupport
25  */

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 JavaDoc getComponent();
37 }
38
Popular Tags