| org.apache.struts.faces.renderer.AbstractRenderer org.apache.struts.faces.renderer.BaseRenderer
BaseRenderer | public class BaseRenderer extends AbstractRenderer (Code) | | Renderer implementation for the base tag
from the Struts-Faces Integration Library.
version: $Rev: 471754 $ $Date: 2006-11-06 08:55:09 -0600 (Mon, 06 Nov 2006) $ |
Method Summary | |
public void | encodeEnd(FacesContext context, UIComponent component) | protected boolean | isPortletRequest(FacesContext context) Return true if this is a portlet request instance. | protected boolean | isServletRequest(FacesContext context) | protected String | portletUri(FacesContext context) Return an absolute URI for the current page suitable for use
in a portlet environment. | protected String | servletUri(FacesContext context) | protected String | uri(FacesContext context) |
encodeEnd | public void encodeEnd(FacesContext context, UIComponent component) throws IOException(Code) | | Render an HTML base element.
Parameters: context - FacesContext for the request we are processing Parameters: component - UIComponent to be rendered exception: IOException - if an input/output error occurs while rendering exception: NullPointerException - if context or component is null |
isPortletRequest | protected boolean isPortletRequest(FacesContext context)(Code) | | Return true if this is a portlet request instance.
NOTE: Implementation must not require portlet API classes to be
present.
Parameters: context - FacesContext for the current request |
isServletRequest | protected boolean isServletRequest(FacesContext context)(Code) | | Return true if this is a servlet request instance.
Parameters: context - FacesContext for the current request |
portletUri | protected String portletUri(FacesContext context)(Code) | | Return an absolute URI for the current page suitable for use
in a portlet environment. NOTE: Implementation must not require
portlet API classes to be present, so use reflection as needed.
Parameters: context - FacesContext for the current request |
servletUri | protected String servletUri(FacesContext context)(Code) | | Return an absolute URI for the current page suitable for use
in a servlet environment.
Parameters: context - FacesContext for the current request |
uri | protected String uri(FacesContext context)(Code) | | Return the absolute URI to be rendered as the value of the
href attribute.
Parameters: context - FacesContext for the current request |
Methods inherited from org.apache.struts.faces.renderer.AbstractRenderer | public void decode(FacesContext context, UIComponent component)(Code)(Java Doc) public void encodeBegin(FacesContext context, UIComponent component) throws IOException(Code)(Java Doc) public void encodeChildren(FacesContext context, UIComponent component) throws IOException(Code)(Java Doc) public void encodeEnd(FacesContext context, UIComponent component) throws IOException(Code)(Java Doc) protected void encodeRecursive(FacesContext context, UIComponent component) throws IOException(Code)(Java Doc) protected String getAsString(FacesContext context, UIComponent component, Object value) throws ConverterException(Code)(Java Doc) protected boolean isDisabled(UIComponent component)(Code)(Java Doc) protected boolean isReadOnly(UIComponent component)(Code)(Java Doc) protected void renderAttributes(FacesContext context, UIComponent component, ResponseWriter writer) throws IOException(Code)(Java Doc) protected void renderBoolean(FacesContext context, UIComponent component, ResponseWriter writer, String names) throws IOException(Code)(Java Doc) protected void renderEnd(FacesContext context, UIComponent component, ResponseWriter writer) throws IOException(Code)(Java Doc) protected void renderPassThrough(FacesContext context, UIComponent component, ResponseWriter writer, String names) throws IOException(Code)(Java Doc) protected void renderStart(FacesContext context, UIComponent component, ResponseWriter writer) throws IOException(Code)(Java Doc) protected void setSubmittedValue(FacesContext context, UIComponent component)(Code)(Java Doc)
|
|
|