| com.sun.rave.web.ui.component.HtmlBase
All known Subclasses: com.sun.rave.web.ui.component.Html,
HtmlBase | abstract public class HtmlBase extends javax.faces.component.UIComponentBase (Code) | | Use the ui:html
tag to create an <html>
element in the rendered
HTML page. The ui:html tag must be used as a
child of the ui:page
tag, following immediately after the ui:page
tag. This tag is required for pages that are not in a portal
enviroment and not subviews.
HTML
Elements and Layout
The rendered HTML page
includes an <html>
tag that uses attributes indicated by the attributes you specify with
the ui:html tag in the JSP page.
Theme
Identifiers
None.
Client
Side Javascript Functions
None.
Examples
Example
1: Using a ui:html
tag
<ui:page>
<ui:html>
<ui:head id="blah"
title="hyperlink test page" />
<ui:body>
<ui:form id="form1">
<ui:hyperlink
id="hyperlinkSubmitsPage"
label="#{HyperlinkBean.label}"
action="#{HyperlinkBean.determineWhatToDoFunction}" />
</ui:form>
</ui:body>
</ui:html>
</ui:page>
Auto-generated component class.
Do NOT modify; all changes
will be lost!
|
HtmlBase | public HtmlBase()(Code) | | Construct a new HtmlBase .
|
getFamily | public String getFamily()(Code) | | Return the identifier of the component family to which this
component belongs. This identifier, in conjunction with the value
of the rendererType property, may be used to select
the appropriate
Renderer for this component instance.
|
getLang | public String getLang()(Code) | | Sets the language code for this document
|
getXmlns | public String getXmlns()(Code) | | Defines the XML namespace attribute. Default value is:
http://www.w3.org/1999/xhtml
|
restoreState | public void restoreState(FacesContext _context, Object _state)(Code) | | Restore the state of this component.
|
saveState | public Object saveState(FacesContext _context)(Code) | | Save the state of this component.
|
setXmlns | public void setXmlns(String xmlns)(Code) | | Defines the XML namespace attribute. Default value is:
http://www.w3.org/1999/xhtml
See Also: HtmlBase.getXmlns() |
|
|