public void encodeBegin(FacesContext facesContext, UIComponent component)
throws IOException
{
org.apache.myfaces.shared.renderkit.RendererUtils.checkParamValidity(facesContext, component, UIForm.class);
UIForm htmlForm = (UIForm)component;
ResponseWriter writer = facesContext.getResponseWriter();
String clientId = htmlForm.getClientId(facesContext);
String acceptCharset = getAcceptCharset(facesContext, htmlForm);
String actionURL = getActionUrl(facesContext, htmlForm);
String method = getMethod(facesContext, htmlForm);
Map<String, List<ClientBehavior>> behaviors = null;