13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 * version 2 for more details (a copy is included in the LICENSE file that 15 * accompanied this code). 16 * 17 * You should have received a copy of the GNU General Public License version 18 * 2 along with this work; if not, write to the Free Software Foundation, 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 * 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 */ 25 26 package java.beans.beancontext; 27 28 import java.awt.Component; 29 30 /** 31 * <p> 32 * This interface is implemented by 33 * <code>BeanContextChildren</code> that have an AWT <code>Component</code> 34 * associated with them. 35 * </p> 36 * 37 * @author Laurence P. G. Cable 38 * @since 1.2 39 * 40 * @see java.beans.beancontext.BeanContext 41 * @see java.beans.beancontext.BeanContextSupport 42 */ 43 44 public interface BeanContextChildComponentProxy { 45 46 /** 47 * Gets the <code>java.awt.Component</code> associated with 48 * this <code>BeanContextChild</code>. 49 * @return the AWT <code>Component</code> associated with 50 * this <code>BeanContextChild</code> 51 */ 52 53 Component getComponent(); 54 } | 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 * version 2 for more details (a copy is included in the LICENSE file that 15 * accompanied this code). 16 * 17 * You should have received a copy of the GNU General Public License version 18 * 2 along with this work; if not, write to the Free Software Foundation, 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 * 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 */ 25 26 package java.beans.beancontext; 27 28 import java.awt.Component; 29 30 /** 31 * <p> 32 * This interface is implemented by 33 * {@code BeanContextChildren} that have an AWT {@code Component} 34 * associated with them. 35 * </p> 36 * 37 * @author Laurence P. G. Cable 38 * @since 1.2 39 * 40 * @see java.beans.beancontext.BeanContext 41 * @see java.beans.beancontext.BeanContextSupport 42 */ 43 44 public interface BeanContextChildComponentProxy { 45 46 /** 47 * Gets the {@code java.awt.Component} associated with 48 * this {@code BeanContextChild}. 49 * @return the AWT {@code Component} associated with 50 * this {@code BeanContextChild} 51 */ 52 53 Component getComponent(); 54 } |