Class TagHandlerUtils
- java.lang.Object
- 
- org.apache.myfaces.view.facelets.tag.TagHandlerUtils
 
- 
 public final class TagHandlerUtils extends Object This class was created to gather some code from latest Facelets not existing in latest JSF 2.0 spec. Also, since it was created on the fly while converting, it's highly possible that methods in this class should be moved in a more logical location and/or removed.- Since:
- 2.0
- Version:
- $Revision$ $Date$
- Author:
- Simon Lessard (latest modification by $Author$)
 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> TfindFirstNextByType(FaceletHandler nextHandler, Class<T> type)Find the first occurence of a tag handler that is instanceof Tstatic ArrayList<FaceletHandler>findNextByType(FaceletHandler nextHandler, Class<?>... type1)static ArrayList<FaceletHandler>findNextByType(FaceletHandler nextHandler, Class<?> type1, Class<?> type2)static <T> ArrayList<T>findNextByType(FaceletHandler nextHandler, Class<T> type)From TagHandler: protected final <T> Iterator<T> findNextByType(Class<T> type)
 
- 
- 
- 
Method Detail- 
findFirstNextByTypepublic static <T> T findFirstNextByType(FaceletHandler nextHandler, Class<T> type) Find the first occurence of a tag handler that is instanceof T- Type Parameters:
- T-
- Parameters:
- nextHandler-
- type-
- Returns:
- Since:
- 2.0.1
 
 - 
findNextByTypepublic static <T> ArrayList<T> findNextByType(FaceletHandler nextHandler, Class<T> type) From TagHandler: protected final <T> Iterator<T> findNextByType(Class<T> type)- Parameters:
- nextHandler-
- type-
- Returns:
 
 - 
findNextByTypepublic static ArrayList<FaceletHandler> findNextByType(FaceletHandler nextHandler, Class<?>... type1) 
 - 
findNextByTypepublic static ArrayList<FaceletHandler> findNextByType(FaceletHandler nextHandler, Class<?> type1, Class<?> type2) 
 
- 
 
-