| com.salmonllc.jsp.JspContainer com.salmonllc.jsp.JspRaw
JspRaw | public class JspRaw extends JspContainer (Code) | | This type can be used to add raw html to your page.
|
JspRaw | public JspRaw(String html, com.salmonllc.html.HtmlPage p)(Code) | | Constructs a raw html object for the page
Parameters: html - - HTML to place in the page. Parameters: p - - page to place the HTML in. |
JspRaw | public JspRaw(String name, String html, com.salmonllc.html.HtmlPage p)(Code) | | Constructs a raw html object for the page
Parameters: name - - The name of the component in the page Parameters: html - - HTML to place in the page. Parameters: p - - page to place the HTML in. |
getFileName | public String getFileName()(Code) | | Use this method get the name file on the server file system to be streamed back to the browser.
|
getHtml | public String getHtml()(Code) | | This method returns the html in the component.
|
getInputStream | public InputStream getInputStream()(Code) | | This method sets the input stream that the component will draw it's html from.
|
setExpression | public void setExpression(DataStoreBuffer ds, String expression) throws Exception(Code) | | Use this method to bind this component to an expression in a DataStore
Parameters: ds - The DataStore to bind to. Parameters: expression - The expression to bind to. See Also: DataStoreEvaluator |
setFileName | public void setFileName(String fileName)(Code) | | Use this method to specify the name file on the server file system to be streamed back to the browser.
|
setHtml | public void setHtml(String html)(Code) | | This method sets the html that the componnt will generate.
|
setInputStream | public void setInputStream(InputStream in)(Code) | | This method sets the input stream that the component will draw it's html from.
|
|
|