Package org.apache.juneau.html
Class HtmlWidgetVar
java.lang.Object
org.apache.juneau.svl.Var
org.apache.juneau.svl.SimpleVar
org.apache.juneau.html.HtmlWidgetVar
HTML widget variable resolver.
The format for this var is
Widgets are simple class that produce some sort of string based on a passed-in HTTP request.
They're registered via the following mechanisms:
See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanResolve(VarResolverSession session) Returnstrue if this variable can be resolved in the specified session.resolve(VarResolverSession session, String key) The interface that needs to be implemented for subclasses ofSimpleVar.Methods inherited from class org.apache.juneau.svl.Var
allowNested, allowRecurse, doResolve, getName
-
Field Details
-
NAME
The name of this variable.- See Also:
-
-
Constructor Details
-
HtmlWidgetVar
public HtmlWidgetVar()Constructor.
-
-
Method Details
-
canResolve
Description copied from class:VarReturnstrue if this variable can be resolved in the specified session.For example, some variable cannot resolve unless specific context or session objects are available.
- Overrides:
canResolvein classVar- Parameters:
session- The current session.- Returns:
true if this variable can be resolved in the specified session.
-
resolve
Description copied from class:VarThe interface that needs to be implemented for subclasses ofSimpleVar.
-