com.sun.rave.web.ui.util |
|
Java Source File Name | Type | Comment |
Bundle.java | Class |
Utility methods for localized messages for design time classes. |
ClassLoaderFinder.java | Class | Strategies for finding the current ClassLoader such as
Thread.currentThread().getContextClassLoader()
do not work during design time, where the notion of the
classpath is more constrained. |
ClientSniffer.java | Class | This utility class parses the user agent of a HttpServletRequest
object to determine browser type, version, and platform. |
ClientType.java | Class | This class provides a typesafe enumeration of value types (see also
ClientTypeEvaluator). |
ComponentUtilities.java | Class | Methods for general component manipulation. |
ConversionUtilities.java | Class | The ConversionUtilities class provides utility method for
converting values to and from Strings. |
FacesMessageUtils.java | Class | |
FilterUtil.java | Class | A utility class that checks if a file or folder should be
displayed based on the filter entered by the user. |
HelpUtils.java | Class | This is a set of utilities used for accessing JavaHelp content. |
IncludeInputStream.java | Class | This InputStream looks for lines beginning with
"#include 'filename'" where filename is the name of a file to
include. |
LogUtil.java | Class | This class provides helper methods for logging messages. |
MessageUtil.java | Class | Factory class for retrieving server-side i18n messages within the JSF
framework. |
PermissionChecker.java | Class | This class takes a "Permission String" and is cabable of determining if
a user passes the permission check. |
RenderingUtilities.java | Class | |
ResourceBundleFactory.java | Class | This factory class provides a means to instantiate a
java.util.ResouceBundle. |
ResourceBundleManager.java | Class | This class caches ResourceBundle objects per locale. |
ResourceFactory.java | Interface | This file defines the ResourceFactory interface. |
ThemeUtilities.java | Class | Utilities needed by Sun Web Components to
retrieve an appropriate Theme. |
TypeConversion.java | Interface | |
TypeConverter.java | Class | Provides an efficient and robust mechanism for converting an object
to a different type. |
UploadFilter.java | Class | Use the UploadFilter if your application contains an Upload component
(<ui:upload> tag).
Configure the filter by declaring the filter element in the web application's
deployment descriptor.
<filter>
<filter-name>UploadFilter</filter-name>
<filter-class>com.sun.rave.web.ui.util.UploadFilter</filter-class>
</filter>
Map the filter to the FacesServlet, for example
<filter-mapping>
<filter-name>UploadFilter</filter-name>
<servlet-name>FacesServlet</servlet-name>
</filter-mapping>
The UploadFilter uses the Apache commons fileupload package. |
ValueType.java | Class | This class provides a typesafe enumeration of value types (see also
ValueTypeEvaluator). |
ValueTypeEvaluator.java | Class |
The ValueTypeEvaluator and the ValueType (@see ValueType) classes
are helper classes for UIComponents which accept value bindings that
can be either single objects or a collection of
objects (for example, an array). |
VariableResolver.java | Class | VariableResolver is used to parse expressions of the format.
$<type$gt;{<key>}
<type> refers to a registerd
VariableResolver.DataSource ,
custom
VariableResolver.DataSource s can be registered via:
VariableResolver.setDataSource(String key,VariableResolver.DataSource dataSource) . |