Package | Description |
---|---|
com.hfg.graphics | |
com.hfg.html |
The HTML classes in this package can be used to construct HTML or XHTML in an object-oriented fashion.
|
Modifier and Type | Method and Description |
---|---|
Script |
Track.getJavascript() |
Script |
Track2D.getJavascript() |
Modifier and Type | Method and Description |
---|---|
Script |
Script.addContent(CharSequence inContent) |
Script |
Head.addJavascript(String inJavascript)
Adds the specified javascript to a 'script' block.
|
Script |
Head.addJavascriptLink(String inURL)
Adds a link to an external stylesheet.
|
Script |
Div.addScript() |
Script |
Span.addScript() |
Script |
Td.addScript() |
Script |
Script.appendln(CharSequence inContent) |
Script |
Script.setCharset(Charset inValue)
Sets the charset.
|
Script |
Script.setContent(CharSequence inContent) |
Script |
Script.setDefer(boolean inValue)
When set, this boolean attribute provides a hint to the user agent that the
script is not going to generate any document content (e.g., no "document.write"
in javascript) and thus, the user agent can continue parsing and rendering.
|
Script |
Script.setLanguage(String inValue)
Deprecated.
Use setType() - The 'language' attribute has been deprecated
in favor of 'type' in the html standard.
|
Script |
Script.setSrc(String inValue)
Specifies the location of an external script.
|
Script |
Script.setType(MimeType inValue)
Sets the script type.
|
Script |
Script.setType(String inValue)
Sets the script type.
|
Script |
Script.useCDATA(boolean inValue)
Defaults to true.
|
jataylor@hairyfatguy.com