Uses of Interface
com.sun.rave.web.ui.util.VariableResolver.DataSource

Packages that use VariableResolver.DataSource
com.sun.rave.web.ui.util   
 

Uses of VariableResolver.DataSource in com.sun.rave.web.ui.util
 

Classes in com.sun.rave.web.ui.util that implement VariableResolver.DataSource
static class VariableResolver.AttributeDataSource
           This VariableResolver.DataSource provides access to HttpRequest attributes.
static class VariableResolver.BooleanDataSource
           This VariableResolver.DataSource converts the given key to a Boolean.
static class VariableResolver.BrowserDataSource
           This VariableResolver.DataSource uses the given key to check various properties of the browser that submitted the request.
static class VariableResolver.ConstantDataSource
           This VariableResolver.DataSource allows access to constants in java classes.
static class VariableResolver.EscapeDataSource
           This VariableResolver.DataSource simply returns the key that it is given.
static class VariableResolver.HasFacetDataSource
           This VariableResolver.DataSource tests if the given facet exists on the UIComponent.
static class VariableResolver.HasPropertyDataSource
           This VariableResolver.DataSource tests if the given property exists on the UIComponent.
static class VariableResolver.IntDataSource
           This VariableResolver.DataSource converts the given key to an Integer.
static class VariableResolver.MethodBindingDataSource
           This VariableResolver.DataSource creates a MethodBinding from the supplied key.
static class VariableResolver.PropertyDataSource
           This VariableResolver.DataSource provides access to UIComponent Properties.
static class VariableResolver.RequestParameterDataSource
           This VariableResolver.DataSource provides access to HttpRequest Parameters.
static class VariableResolver.ResourceBundleDataSource
           This VariableResolver.DataSource allows access to resource bundle keys.
static class VariableResolver.SessionDataSource
           This VariableResolver.DataSource provides access to HttpSession attributes.
static class VariableResolver.StyleDataSource
           This VariableResolver.DataSource retrieves style classes from the current Theme.
static class VariableResolver.ThemeDataSource
           This VariableResolver.DataSource retrieves Theme messages from the Theme.
static class VariableResolver.ThemeJavaScriptDataSource
           This VariableResolver.DataSource retrieves the path to a JavaScript file from the Theme.
static class VariableResolver.ThisDataSource
           This class provides an implementation for the syntax $this{xyz} where xyz can be any of the following.
 

Methods in com.sun.rave.web.ui.util that return VariableResolver.DataSource
static VariableResolver.DataSource VariableResolver.getDataSource(java.lang.String key)
           This method looks up the requested VariableResolver.DataSource by the given key.
 

Methods in com.sun.rave.web.ui.util with parameters of type VariableResolver.DataSource
static void VariableResolver.setDataSource(java.lang.String key, VariableResolver.DataSource dataSource)
           This method sets the given VariableResolver.DataSource to be used for $[type]{...} when key matches type.