Uses of Class
jakarta.faces.view.ViewDeclarationLanguage
-
Packages that use ViewDeclarationLanguage Package Description jakarta.faces.application jakarta.faces.view -
-
Uses of ViewDeclarationLanguage in jakarta.faces.application
Methods in jakarta.faces.application that return ViewDeclarationLanguage Modifier and Type Method Description ViewDeclarationLanguage
ViewHandler. getViewDeclarationLanguage(FacesContext context, String viewId)
ViewDeclarationLanguage
ViewHandlerWrapper. getViewDeclarationLanguage(FacesContext context, String viewId)
The default behavior of this method is to callViewHandler.getViewDeclarationLanguage(jakarta.faces.context.FacesContext, java.lang.String)
on the wrappedViewHandler
object. -
Uses of ViewDeclarationLanguage in jakarta.faces.view
Subclasses of ViewDeclarationLanguage in jakarta.faces.view Modifier and Type Class Description class
ViewDeclarationLanguageWrapper
Provides a simple implementation ofViewDeclarationLanguage
that can be subclassed by developers wishing to provide specialized behavior to an existingViewDeclarationLanguage
instance.Methods in jakarta.faces.view that return ViewDeclarationLanguage Modifier and Type Method Description abstract ViewDeclarationLanguage
ViewDeclarationLanguageFactory. getViewDeclarationLanguage(String viewId)
Return theViewDeclarationLanguage
instance suitable for handling the VDL contained in the page referenced by the argumentviewId
.ViewDeclarationLanguage
ViewDeclarationLanguageWrapper. getWrapped()
Methods in jakarta.faces.view that return types with arguments of type ViewDeclarationLanguage Modifier and Type Method Description List<ViewDeclarationLanguage>
ViewDeclarationLanguageFactory. getAllViewDeclarationLanguages()
Gets the list of all view declaration languages supported by this runtime.Constructors in jakarta.faces.view with parameters of type ViewDeclarationLanguage Constructor Description ViewDeclarationLanguageWrapper(ViewDeclarationLanguage wrapped)
If this view declaration language has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.
-