0N/A/*
2362N/A * Copyright (c) 1997, 2000, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage java.beans;
0N/A
0N/Aimport java.applet.Applet;
0N/A
0N/Aimport java.beans.beancontext.BeanContext;
0N/A
0N/A/**
0N/A * <p>
0N/A * This interface is designed to work in collusion with java.beans.Beans.instantiate.
0N/A * The interafce is intended to provide mechanism to allow the proper
0N/A * initialization of JavaBeans that are also Applets, during their
0N/A * instantiation by java.beans.Beans.instantiate().
0N/A * </p>
0N/A *
0N/A * @see java.beans.Beans#instantiate
0N/A *
0N/A * @since 1.2
0N/A *
0N/A */
0N/A
0N/A
0N/Apublic interface AppletInitializer {
0N/A
0N/A /**
0N/A * <p>
0N/A * If passed to the appropriate variant of java.beans.Beans.instantiate
0N/A * this method will be called in order to associate the newly instantiated
0N/A * Applet (JavaBean) with its AppletContext, AppletStub, and Container.
0N/A * </p>
0N/A * <p>
0N/A * Conformant implementations shall:
0N/A * <ol>
0N/A * <li> Associate the newly instantiated Applet with the appropriate
0N/A * AppletContext.
0N/A *
0N/A * <li> Instantiate an AppletStub() and associate that AppletStub with
0N/A * the Applet via an invocation of setStub().
0N/A *
0N/A * <li> If BeanContext parameter is null, then it shall associate the
0N/A * Applet with its appropriate Container by adding that Applet to its
0N/A * Container via an invocation of add(). If the BeanContext parameter is
0N/A * non-null, then it is the responsibility of the BeanContext to associate
0N/A * the Applet with its Container during the subsequent invocation of its
0N/A * addChildren() method.
0N/A * </ol>
0N/A * </p>
0N/A *
0N/A * @param newAppletBean The newly instantiated JavaBean
0N/A * @param bCtxt The BeanContext intended for this Applet, or
0N/A * null.
0N/A */
0N/A
0N/A void initialize(Applet newAppletBean, BeanContext bCtxt);
0N/A
0N/A /**
0N/A * <p>
0N/A * Activate, and/or mark Applet active. Implementors of this interface
0N/A * shall mark this Applet as active, and optionally invoke its start()
0N/A * method.
0N/A * </p>
0N/A *
0N/A * @param newApplet The newly instantiated JavaBean
0N/A */
0N/A
0N/A void activate(Applet newApplet);
0N/A}