| com.sun.rave.web.ui.appbase.renderer.CommandLinkRenderer
CommandLinkRenderer | public class CommandLinkRenderer extends Renderer (Code) | | Replacement renderer for the <h:commandLink>
component, which is not tied to the JSF standard form renderer (and
will therefore work inside a Braveheart form component).
|
Method Summary | |
public void | decode(FacesContext context, UIComponent component) | public void | encodeBegin(FacesContext context, UIComponent component) | public void | encodeEnd(FacesContext context, UIComponent component) |
decode | public void decode(FacesContext context, UIComponent component)(Code) | | Perform setup processing that will be required for decoding
the incoming request.
Parameters: context - FacesContext for the current request Parameters: component - UIComponent to be processed exception: NullPointerException - if contxt or component is null . |
encodeBegin | public void encodeBegin(FacesContext context, UIComponent component) throws IOException(Code) | | Render the beginning of a hyperlink to submit this form.
Parameters: context - FacesContext for the current request Parameters: component - UIComponent to be processed exception: IOException - if an input/output error occurs exception: NullPointerException - if contxt or component is null . |
encodeEnd | public void encodeEnd(FacesContext context, UIComponent component) throws IOException(Code) | | Render the ending of a hyperlink to submit this form.
Parameters: context - FacesContext for the current request Parameters: component - UIComponent to be processed exception: IOException - if an input/output error occurs exception: NullPointerException - if contxt or component is null . |
|
|