| java.lang.Object org.sakaiproject.tool.podcasts.jsf.renderer.util.RendererUtil
RendererUtil | public class RendererUtil (Code) | | Place for common utilities for renderers
author: Ed Smiley esmiley@stanford.edu version: $Id: RendererUtil.java 14691 2006-09-15 12:36:27Z ajpoland@iupui.edu $ |
Method Summary | |
public static void | encodeRecursive(FacesContext context, UIComponent component) Helper method for recursively encoding a component. | public static boolean | isDisabledOrReadonly(UIComponent component) If renderer supports disabled or readonly attributes use this method to
obtain an early exit from decode method. |
encodeRecursive | public static void encodeRecursive(FacesContext context, UIComponent component) throws IOException(Code) | | Helper method for recursively encoding a component.
Parameters: context - the given FacesContext Parameters: component - the UIComponent to render throws: IOException - |
isDisabledOrReadonly | public static boolean isDisabledOrReadonly(UIComponent component)(Code) | | If renderer supports disabled or readonly attributes use this method to
obtain an early exit from decode method. Good idea to include it anyway,
compnent will continue to work when these properties are added.
Parameters: component - |
|
|