Java Reference
In-Depth Information
Figure 10-1. The life cycle of an applet
Listing 10-1 shows the interface an applet must implement to follow the applet
life cycle.
Listing 10-1. The Applet Interface
import java.applet.*;
public class SimplestApplet extends Applet {
public void init() {
}
public void start() {
}
 
Search WWH ::




Custom Search