| com.sun.rave.web.ui.renderer.TableHeaderRenderer
TableHeaderRenderer | public class TableHeaderRenderer extends Renderer (Code) | | This class renders TableHeader components.
Note: To see the messages logged by this class, set the following global
defaults in your JDK's "jre/lib/logging.properties" file.
java.util.logging.ConsoleHandler.level = FINE
com.sun.rave.web.ui.renderer.TableHeaderRenderer.level = FINE
|
Method Summary | |
public void | encodeBegin(FacesContext context, UIComponent component) Render the beginning of the specified UIComponent to the output stream or
writer associated with the response we are creating. | public void | encodeChildren(FacesContext context, UIComponent component) Render the children of the specified UIComponent to the output stream or
writer associated with the response we are creating. | public void | encodeEnd(FacesContext context, UIComponent component) Render the ending of the specified UIComponent to the output stream or
writer associated with the response we are creating. | public boolean | getRendersChildren() Return a flag indicating whether this Renderer is responsible
for rendering the children the component it is asked to render. | protected void | renderColumnHeader(FacesContext context, TableHeader component, ResponseWriter writer) Render column headers for TableHeader components. | protected void | renderEnclosingTagEnd(FacesContext context, TableHeader component, ResponseWriter writer) Render enclosing tag for TableHeader components. | protected void | renderEnclosingTagStart(FacesContext context, TableHeader component, ResponseWriter writer) Render enclosing tag for TableHeader components. | protected void | renderGroupHeader(FacesContext context, TableHeader component, ResponseWriter writer) Render group header for TableHeader components. | protected void | renderSelectHeader(FacesContext context, TableHeader component, ResponseWriter writer) Render select column headers for TableHeader components. | protected void | renderSortHeader(FacesContext context, TableHeader component, ResponseWriter writer) Render sort column headers for TableHeader components. |
encodeBegin | public void encodeBegin(FacesContext context, UIComponent component) throws IOException(Code) | | Render the beginning of the specified UIComponent to the output stream or
writer associated with the response we are creating.
Parameters: context - FacesContext for the current request. Parameters: component - UIComponent to be rendered. exception: IOException - if an input/output error occurs. exception: NullPointerException - if context or component is null. |
encodeChildren | public void encodeChildren(FacesContext context, UIComponent component) throws IOException(Code) | | Render the children of the specified UIComponent to the output stream or
writer associated with the response we are creating.
Parameters: context - FacesContext for the current request. Parameters: component - UIComponent to be decoded. exception: IOException - if an input/output error occurs. exception: NullPointerException - if context or component is null. |
encodeEnd | public void encodeEnd(FacesContext context, UIComponent component) throws IOException(Code) | | Render the ending of the specified UIComponent to the output stream or
writer associated with the response we are creating.
Parameters: context - FacesContext for the current request. Parameters: component - UIComponent to be rendered. exception: IOException - if an input/output error occurs. exception: NullPointerException - if context or component is null. |
getRendersChildren | public boolean getRendersChildren()(Code) | | Return a flag indicating whether this Renderer is responsible
for rendering the children the component it is asked to render.
The default implementation returns false.
|
renderColumnHeader | protected void renderColumnHeader(FacesContext context, TableHeader component, ResponseWriter writer) throws IOException(Code) | | Render column headers for TableHeader components.
Parameters: context - FacesContext for the current request. Parameters: component - TableHeader to be rendered. Parameters: writer - ResponseWriter to which the component should be rendered. exception: IOException - if an input/output error occurs. |
renderEnclosingTagEnd | protected void renderEnclosingTagEnd(FacesContext context, TableHeader component, ResponseWriter writer) throws IOException(Code) | | Render enclosing tag for TableHeader components.
Parameters: context - FacesContext for the current request. Parameters: component - TableHeader to be rendered. Parameters: writer - ResponseWriter to which the component should be rendered. exception: IOException - if an input/output error occurs. |
renderEnclosingTagStart | protected void renderEnclosingTagStart(FacesContext context, TableHeader component, ResponseWriter writer) throws IOException(Code) | | Render enclosing tag for TableHeader components.
Parameters: context - FacesContext for the current request. Parameters: component - TableHeader to be rendered. Parameters: writer - ResponseWriter to which the component should be rendered. exception: IOException - if an input/output error occurs. |
renderGroupHeader | protected void renderGroupHeader(FacesContext context, TableHeader component, ResponseWriter writer) throws IOException(Code) | | Render group header for TableHeader components.
Parameters: context - FacesContext for the current request. Parameters: component - TableHeader to be rendered. Parameters: writer - ResponseWriter to which the component should be rendered. exception: IOException - if an input/output error occurs. |
renderSelectHeader | protected void renderSelectHeader(FacesContext context, TableHeader component, ResponseWriter writer) throws IOException(Code) | | Render select column headers for TableHeader components.
Parameters: context - FacesContext for the current request. Parameters: component - TableHeader to be rendered. Parameters: writer - ResponseWriter to which the component should be rendered. exception: IOException - if an input/output error occurs. |
renderSortHeader | protected void renderSortHeader(FacesContext context, TableHeader component, ResponseWriter writer) throws IOException(Code) | | Render sort column headers for TableHeader components.
Parameters: context - FacesContext for the current request. Parameters: component - TableHeader to be rendered. Parameters: writer - ResponseWriter to which the component should be rendered. exception: IOException - if an input/output error occurs. |
|
|