javax.faces.view.facelets
Class Facelet
java.lang.Object
javax.faces.view.facelets.Facelet
public abstract class Facelet
- extends Object
The parent or root object in a FaceletHandler composition. The Facelet will take care of populating the passed
UIComponent parent in relation to the create/restore lifecycle of JSF.
- Version:
- $Id: Facelet.java 1488347 2013-05-31 18:30:47Z lu4242 $
- Author:
- Jacob Hookom
Method Summary |
abstract void |
apply(FacesContext facesContext,
UIComponent parent)
The passed UIComponent parent will be populated/restored in accordance with the JSF 1.2 specification. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Facelet
public Facelet()
apply
public abstract void apply(FacesContext facesContext,
UIComponent parent)
throws IOException,
FacesException,
FaceletException,
javax.el.ELException
- The passed UIComponent parent will be populated/restored in accordance with the JSF 1.2 specification.
- Parameters:
facesContext
- The current FacesContext (Should be the same as FacesContext.getInstance())parent
- The UIComponent to populate in a compositional fashion. In most cases a Facelet will be base a
UIViewRoot.
- Throws:
IOException
FacesException
FaceletException
javax.el.ELException
Copyright © 2013 The Apache Software Foundation. All Rights Reserved.