Introduction to OOP Chapter 21: Software Frameworks : next previous audio real text

An Example Framework, The Java Applet API

The Java Applet API is one simple example of a software framework.

init()Invoked whe the applet is initialized
start()Invoked th start the application
paint(Graphics)Invoked to repaint the window
stop()Invoked when the applet is halted
destroyInvoked when the applet is terminated

Lots of other classes for constructing buttons and menus, and so on.

Intro OOP, Chapter 21, Slide 14