Table of Contents Previous Section


Java Support: WOApplet and WOParam

Synopsis

WOApplet { code=javaClassName; width=aWidth; height=aHeight; [associationClass=className;] [codeBase=aPath;] ... };

WOParam { name=aString; value=aString | action=aMethod; ... };

Description

WOApplet is a dynamic element that generates HTML to specify a Java applet. The applet's parameters are passed by one or more WOParam elements.

WOApplet:

code
Name of the Java class.

width
Width, in pixels, of the area to allocate for the applet.

height
Height, in pixels, of the area to allocate for the applet.

associationClass
Name of Java class that aids in communication between client applet and the server.

codeBase
Directory that contains the applet code. If this attribute is omitted, the applet code is assumed to be in the same directory as the template HTML file.


WOParam:

name
Symbolic name associated with this element's value.

value
Value of this parameter.

action
Method that the applet will invoke.

Examples

Blinking text

Table of Contents Next Section