public interface WebExporter
Modifier and Type | Method and Description |
---|---|
boolean |
defineAttribute(WebAttribute webAttribute,
boolean overwrite)
Add the given web content as a new attribute.
|
void |
defineElement(WebElement webElement,
boolean onceOnly)
Add the given web content as a new element to the specified position.
|
ExportParameters |
getExportParameters()
During invocation an export, return
the parameters of the export.
|
PtolemyFrame |
getFrame()
The frame (window) being exported.
|
void |
setTitle(java.lang.String title,
boolean showInHTML)
Set the title to be used for the page being exported.
|
boolean defineAttribute(WebAttribute webAttribute, boolean overwrite)
webAttribute
- The WebAttribute containing the content to add.overwrite
- If true, overwrite any previously defined value for
the specified attribute. If false, then do nothing if there is already
an attribute with the specified name.void defineElement(WebElement webElement, boolean onceOnly)
webElement
- The WebElement containing the content to add and the
position.onceOnly
- True to prevent duplicate content.ExportParameters getExportParameters()
PtolemyFrame getFrame()
void setTitle(java.lang.String title, boolean showInHTML)
title
- The title.showInHTML
- True to produce an HTML title prior to the model image.