Applet Class


  • Each Applet inherits from java.applet.Applet

  • This class provides the necessary structure to coordinate with a Web browser

  • Key methods to understand and potentially implement/override:
    • A no-argument (default) constructor
    • init()
    • start()
    • stop()
    • destroy()

  • If your Applet has any graphics, look at:
    • repaint()
    • update()
    • paint()