src/share/classes/java/applet/AppletStub.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:


  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 package java.applet;
  26 
  27 import java.net.URL;
  28 
  29 /**
  30  * When an applet is first created, an applet stub is attached to it
  31  * using the applet's <code>setStub</code> method. This stub
  32  * serves as the interface between the applet and the browser
  33  * environment or applet viewer environment in which the application
  34  * is running.
  35  *
  36  * @author      Arthur van Hoff
  37  * @see         java.applet.Applet#setStub(java.applet.AppletStub)
  38  * @since       JDK1.0
  39  */
  40 public interface AppletStub {
  41     /**
  42      * Determines if the applet is active. An applet is active just
  43      * before its <code>start</code> method is called. It becomes
  44      * inactive just before its <code>stop</code> method is called.
  45      *
  46      * @return  <code>true</code> if the applet is active;
  47      *          <code>false</code> otherwise.
  48      */
  49     boolean isActive();
  50 
  51 
  52     /**
  53      * Gets the URL of the document in which the applet is embedded.
  54      * For example, suppose an applet is contained
  55      * within the document:
  56      * <blockquote><pre>
  57      *    http://www.oracle.com/technetwork/java/index.html
  58      * </pre></blockquote>




  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 package java.applet;
  26 
  27 import java.net.URL;
  28 
  29 /**
  30  * When an applet is first created, an applet stub is attached to it
  31  * using the applet's <code>setStub</code> method. This stub
  32  * serves as the interface between the applet and the browser
  33  * environment or applet viewer environment in which the application
  34  * is running.
  35  *
  36  * @author      Arthur van Hoff
  37  * @see         java.applet.Applet#setStub(java.applet.AppletStub)
  38  * @since       1.0
  39  */
  40 public interface AppletStub {
  41     /**
  42      * Determines if the applet is active. An applet is active just
  43      * before its <code>start</code> method is called. It becomes
  44      * inactive just before its <code>stop</code> method is called.
  45      *
  46      * @return  <code>true</code> if the applet is active;
  47      *          <code>false</code> otherwise.
  48      */
  49     boolean isActive();
  50 
  51 
  52     /**
  53      * Gets the URL of the document in which the applet is embedded.
  54      * For example, suppose an applet is contained
  55      * within the document:
  56      * <blockquote><pre>
  57      *    http://www.oracle.com/technetwork/java/index.html
  58      * </pre></blockquote>