/** * Write pass thru attributes associated with the UIComponent parameter. The excludedAttributes * argument is a String array of the names of attributes to omit. Do not render attributes * contained in the excludedAttributes argument. * * @param writer * @param uiComponent * @param excludedAttributes attributes to exclude * @throws IOException * @deprecated */ public static void renderAttributes( ResponseWriter writer, UIComponent uiComponent, String[] excludedAttributes) throws IOException { renderNonBooleanAttributes(writer, uiComponent, excludedAttributes); renderBooleanAttributes(writer, uiComponent, excludedAttributes); }