public class

SerialVer

extends Applet
java.lang.Object
   ↳ java.awt.Component
     ↳ java.awt.Container
       ↳ java.awt.Panel
         ↳ java.applet.Applet
           ↳ sun.tools.serialver.SerialVer

Summary

[Expand]
Inherited Constants
From class java.awt.Component
From interface java.awt.image.ImageObserver
Public Constructors
SerialVer()
Public Methods
boolean action(Event ev, Object obj)
This method is deprecated. As of JDK version 1.1, should register this component as ActionListener on component which fires action events.
boolean handleEvent(Event ev)
This method is deprecated. As of JDK version 1.1 replaced by processEvent(AWTEvent).
synchronized void init()
Called by the browser or applet viewer to inform this applet that it has been loaded into the system.
static void main(String[] args)
void start()
Called by the browser or applet viewer to inform this applet that it should start its execution.
static void usage()
Usage
[Expand]
Inherited Methods
From class java.applet.Applet
From class java.awt.Panel
From class java.awt.Container
From class java.awt.Component
From class java.lang.Object
From interface java.awt.MenuContainer
From interface java.awt.image.ImageObserver
From interface javax.accessibility.Accessible

Public Constructors

public SerialVer ()

Public Methods

public boolean action (Event ev, Object obj)

This method is deprecated.
As of JDK version 1.1, should register this component as ActionListener on component which fires action events.

public boolean handleEvent (Event ev)

This method is deprecated.
As of JDK version 1.1 replaced by processEvent(AWTEvent).

public synchronized void init ()

Called by the browser or applet viewer to inform this applet that it has been loaded into the system. It is always called before the first time that the start method is called.

A subclass of Applet should override this method if it has initialization to perform. For example, an applet with threads would use the init method to create the threads and the destroy method to kill them.

The implementation of this method provided by the Applet class does nothing.

public static void main (String[] args)

public void start ()

Called by the browser or applet viewer to inform this applet that it should start its execution. It is called after the init method and each time the applet is revisited in a Web page.

A subclass of Applet should override this method if it has any operation that it wants to perform each time the Web page containing it is visited. For example, an applet with animation might want to use the start method to resume animation, and the stop method to suspend the animation.

Note: some methods, such as getLocationOnScreen, can only provide meaningful results if the applet is showing. Because isShowing returns false when the applet's start is first called, methods requiring isShowing to return true should be called from a ComponentListener.

The implementation of this method provided by the Applet class does nothing.

public static void usage ()

Usage