KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)BeanContextContainerProxy.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.Container JavaDoc;
11
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.10, 12/19/03
20  * @since 1.2
21  *
22  * @see java.beans.beancontext.BeanContext
23  * @see java.beans.beancontext.BeanContextSupport
24  */

25
26 public interface BeanContextContainerProxy {
27
28     /**
29      * Gets the <code>java.awt.Container</code> associated
30      * with this <code>BeanContext</code>.
31      * @return the <code>java.awt.Container</code> associated
32      * with this <code>BeanContext</code>.
33      */

34     Container JavaDoc getContainer();
35 }
36
Popular Tags