Documentation Archive Developer
Search
PATH  Documentation > WebObjects 4.5 > EOApplication Reference

Table of Contents

EOApplet


Inherits from:
javax.swing.JApplet
Package:
com.apple.client.eoapplication


Class Description


EOApplet is the default Applet class embedded in WebObjects pages containing a WOJavaClientApplet dynamic element. EOApplet's only task is to read all the application's arguments (passed as HTML parameters) and forward them to the initialization code in EOApplication. For maximum flexibility, any application specific code should be implemented in EOApplication's finishInitialization method rather than EOApplet's init method.

In the controller hierarchy, the applet is represented by an EOAppletController, which becomes a client subcontroller of the EOApplication object.

EOApplet is used in Java Client applications only; there is no equivalent class on the server.




Instance Methods



init

public void init()

Instantiates an EOAppletController for the controller hierarchy and invokes EOApplication's startApplication using parameters retrieved via Applet's getParameter.




Table of Contents

DRAFT