javax.faces.view.facelets

Class FaceletContext


  • public abstract class FaceletContext
    extends ELContext

    Context representative of a single request from a Facelet. This instance is passed to nearly every method call in this API.

    Since:
    2.0
    • Constructor Detail

      • FaceletContext

        public FaceletContext()
    • Method Detail

      • getFacesContext

        public abstract FacesContext getFacesContext()

        The current FacesContext bound to this "request". Must not be null.

        Since:
        2.0
      • generateUniqueId

        public abstract String generateUniqueId(String base)

        Generate a unique ID for the passed String

        Parameters:
        base - the string from which to generate the ID.
        Since:
        2.0
      • getExpressionFactory

        public abstract ExpressionFactory getExpressionFactory()

        The ExpressionFactory to use within the Facelet this context is executing upon. Must not be null.

        Since:
        2.0
      • setVariableMapper

        public abstract void setVariableMapper(VariableMapper varMapper)

        Set the VariableMapper to use in EL evaluation/creation.

        Parameters:
        varMapper - the new VariableMapper
        Since:
        2.0
      • setFunctionMapper

        public abstract void setFunctionMapper(FunctionMapper fnMapper)

        Set the FunctionMapper to use in EL evaluation/creation.

        Parameters:
        fnMapper - the new FunctionMapper
        Since:
        2.0
      • setAttribute

        public abstract void setAttribute(String name,
                                          Object value)

        Support method which is backed by the current VariableMapper.

        Parameters:
        name - the name of the attribute
        value - the value of the attribute
        Since:
        2.0
      • includeFacelet

        public abstract void includeFacelet(UIComponent parent,
                                            String relativePath)
                                     throws IOException

        Include another Facelet defined at some path, relative to the executing context, not the current Facelet (same as include directive in JSP)

        Parameters:
        parent - the UIComponent that will be the parent of any components in the included facelet.
        relativePath - the path of the resource containing the facelet markup, relative to the current markup
        Throws:
        IOException - if unable to load relativePath
        FaceletException - if unable to parse the markup loaded from relativePath
        FacesException - if unable to create child UIComponent instances
        ELException - if any of the expressions in the markup loaded from relativePath fail
        Since:
        2.0
      • includeFacelet

        public abstract void includeFacelet(UIComponent parent,
                                            URL absolutePath)
                                     throws IOException

        Include another Facelet defined at some path, absolute to this ClassLoader/OS

        Parameters:
        parent - the UIComponent that will be the parent of any components in the included facelet.
        absolutePath - the absolute path to the resource containing the facelet markup
        Throws:
        IOException - if unable to load relativePath
        FaceletException - if unable to parse the markup loaded from relativePath
        FacesException - if unable to create child UIComponent instances
        ELException - if any of the expressions in the markup loaded from relativePath fail

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Version en cache

21/08/2025 19:00:18 Cette version de la page est en cache (à la date du 21/08/2025 19:00:18) afin d'accélérer le traitement.
Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.

Document créé le 11/06/2005, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/faces/view/facelets/faceletcontext.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.