|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.mortbay.html.Element | +--org.mortbay.html.Composite | +--org.mortbay.html.Block | +--org.mortbay.html.Applet
An Applet Block.
Lets you set the class name from the program, and optionally, the size and the codebase.
This class uses any attributes set in Element.
org.mortbay.Page page = new org.mortbay.html.Page(); page.add(new org.mortbay.Applet("org.mortbay.Foo.App"));
Block
Field Summary | |
java.lang.String |
codeBase
|
Fields inherited from class org.mortbay.html.Block |
Bold, Center, Div, Italic, Left, Listing, Plain, Pre, Quote, Right, Span, Xmp |
Fields inherited from class org.mortbay.html.Element |
ALIGN, BGCOLOR, BOTTOM, CENTER, CLASS, COLOR, HEIGHT, ID, LEFT, MIDDLE, noAttributes, RIGHT, SIZE, STYLE, TOP, VALIGN, WIDTH |
Constructor Summary | |
Applet(java.lang.String className)
Create an Applet Element. |
Method Summary | |
Applet |
codeBase(java.lang.String cb)
Set the codebase |
Applet |
setAlternate(Element alt)
Deprecated. use add |
Applet |
setAlternate(java.lang.String alt)
Deprecated. use add |
Applet |
setDebug(boolean debug)
Set whether debugging is on in the Applet. |
Applet |
setDimensions(int height,
int width)
Set the dimensions of the Applet. |
Applet |
setParam(java.lang.String name,
java.lang.String value)
|
void |
write(java.io.Writer out)
Write out the HTML |
Methods inherited from class org.mortbay.html.Composite |
add, contents, nest, replace, reset, setNest, size, unnest |
Methods inherited from class org.mortbay.html.Element |
attribute, attribute, attribute, attributes, attributes, bgColor, bottom, center, color, cssClass, cssID, height, height, height, left, middle, right, setAttributesFrom, size, size, style, top, toString, width, width, width, write, write |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public java.lang.String codeBase
Constructor Detail |
public Applet(java.lang.String className)
className
- The name of the class to give for the appletMethod Detail |
public Applet setDimensions(int height, int width)
public Applet setDebug(boolean debug)
This controls whether the org.mortbay.util.Code debug messages will be printed to the java console.
Defaults to whether debug is turned on in the generating app
public Applet setAlternate(Element alt)
alt
- The alternate element to displaypublic Applet setAlternate(java.lang.String alt)
alt
- The alternate element to displaypublic Applet codeBase(java.lang.String cb)
public Applet setParam(java.lang.String name, java.lang.String value)
public void write(java.io.Writer out) throws java.io.IOException
write
in class Block
out
- Writer to write the element to.
java.io.IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |