同步操作将从 cxylk/Java-Notes 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/** Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.*********************/package java.beans;import java.applet.Applet;import java.beans.beancontext.BeanContext;/*** <p>* This interface is designed to work in collusion with java.beans.Beans.instantiate.* The interface is intended to provide mechanism to allow the proper* initialization of JavaBeans that are also Applets, during their* instantiation by java.beans.Beans.instantiate().* </p>** @see java.beans.Beans#instantiate** @since 1.2**/public interface AppletInitializer {/*** <p>* If passed to the appropriate variant of java.beans.Beans.instantiate* this method will be called in order to associate the newly instantiated* Applet (JavaBean) with its AppletContext, AppletStub, and Container.* </p>* <p>* Conformant implementations shall:* <ol>* <li> Associate the newly instantiated Applet with the appropriate* AppletContext.** <li> Instantiate an AppletStub() and associate that AppletStub with* the Applet via an invocation of setStub().** <li> If BeanContext parameter is null, then it shall associate the* Applet with its appropriate Container by adding that Applet to its* Container via an invocation of add(). If the BeanContext parameter is* non-null, then it is the responsibility of the BeanContext to associate* the Applet with its Container during the subsequent invocation of its* addChildren() method.* </ol>** @param newAppletBean The newly instantiated JavaBean* @param bCtxt The BeanContext intended for this Applet, or* null.*/void initialize(Applet newAppletBean, BeanContext bCtxt);/*** <p>* Activate, and/or mark Applet active. Implementors of this interface* shall mark this Applet as active, and optionally invoke its start()* method.* </p>** @param newApplet The newly instantiated JavaBean*/void activate(Applet newApplet);}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。