| |
|
| java.lang.Object com.icesoft.faces.renderkit.dom_html_basic.PassThruAttributeWriter
PassThruAttributeWriter | public class PassThruAttributeWriter (Code) | | This class is used by ReponseWriter based renderers to render html
pass thru attributes.
author: gmccleary |
Method Summary | |
final static List | getpassThruAttributeNames() | public static boolean | passThruAttributeExists(UIComponent uiComponent) Determine whether any of the attributes defined for the UIComponent
instance are pass thru attributes. | public static void | renderAttributes(ResponseWriter writer, UIComponent uiComponent, String[] excludedAttributes) Write pass thru attributes associated with the UIComponent parameter. | public static void | renderOnBlur(ResponseWriter writer) ToDo: Render the icefaces onblur handler to the root element. | public static void | renderOnFocus(ResponseWriter writer) ToDo: Render the icefaces onfocus handler to the root element. |
getpassThruAttributeNames | final static List getpassThruAttributeNames()(Code) | | |
passThruAttributeExists | public static boolean passThruAttributeExists(UIComponent uiComponent)(Code) | | Determine whether any of the attributes defined for the UIComponent
instance are pass thru attributes.
Parameters: uiComponent - true if the UIComponent parameter has one or more attributesdefined that are pass thru attributes |
renderAttributes | public static void renderAttributes(ResponseWriter writer, UIComponent uiComponent, String[] excludedAttributes) throws IOException(Code) | | 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.
Parameters: writer - Parameters: uiComponent - Parameters: excludedAttributes - attributes to exclude throws: IOException - |
renderOnBlur | public static void renderOnBlur(ResponseWriter writer) throws IOException(Code) | | ToDo: Render the icefaces onblur handler to the root element. This should
be restricted to input type elements and commandlinks.
Parameters: writer - throws: IOException - |
renderOnFocus | public static void renderOnFocus(ResponseWriter writer) throws IOException(Code) | | ToDo: Render the icefaces onfocus handler to the root element. This
should be restricted to input type elements and commandlinks.
Parameters: writer - throws: IOException - |
|
|
|