| org.sakaiproject.jsf.renderer.DynaRendererBase
All known Subclasses: org.sakaiproject.jsf.renderer.MultiColumnRenderer, org.sakaiproject.jsf.renderer.DynaTableRenderer,
DynaRendererBase | abstract public class DynaRendererBase extends Renderer (Code) | | |
Method Summary | |
abstract public void | encodeBegin(FacesContext context, UIComponent component) | public void | encodeChildren(FacesContext context, UIComponent component) | abstract public void | encodeEnd(FacesContext context, UIComponent component) | public boolean | getRendersChildren() | protected void | renderData(FacesContext context, UIComponent component) Core workhouse method of the dynamic renderers. | public boolean | supportsComponentType(UIComponent component) This is an UIData type component. |
DynaRendererBase | public DynaRendererBase()(Code) | | |
encodeBegin | abstract public void encodeBegin(FacesContext context, UIComponent component) throws IOException(Code) | | |
encodeChildren | public void encodeChildren(FacesContext context, UIComponent component) throws IOException(Code) | | Faces render output method .
Encode children column and multicolumn
Parameters: context - FacesContext for the current request Parameters: component - UIComponent being rendered throws: IOException - if an input/output error occurs |
encodeEnd | abstract public void encodeEnd(FacesContext context, UIComponent component) throws IOException(Code) | | |
getRendersChildren | public boolean getRendersChildren()(Code) | | This component renders its children
true |
renderData | protected void renderData(FacesContext context, UIComponent component) throws IOException(Code) | | Core workhouse method of the dynamic renderers.
Parameters: context - FacesContext Parameters: component - UIComponent throws: IOException - |
supportsComponentType | public boolean supportsComponentType(UIComponent component)(Code) | | This is an UIData type component.
Parameters: component - true if UIData |
|
|