Class Summary | |
---|---|
Action |
An Action is an adapter between the contents of an incoming HTTP request and the corresponding business logic that should be executed to process this request. |
ActionConfig |
A JavaBean representing the configuration information of an
|
ActionConfigMatcher | Matches paths against pre-compiled wildcard expressions pulled from action configs. |
ActionConfigMatcher.Mapping | Stores a compiled wildcard pattern and the ActionConfig it came from. |
ActionController | Struts wrapper implementation of Controller. |
ActionDispatcher |
Action helper class that dispatches to a public method in an Action. This class is provided as an alternative mechanism to using DispatchAction
and its various flavours and means Dispatch behaviour can be
easily implemented into any To implement dispatch behaviour in an public class MyCustomAction extends Action { protected ActionDispatcher dispatcher = new ActionDispatcher(this, ActionDispatcher.MAPPING_FLAVOR); public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { return dispatcher.execute(mapping, form, request, response); } } It provides three flavours of determing the name of the method:
|
ActionError |
An encapsulation of an individual error message returned by the
The placeholder objects are referenced in the message text using the same
syntax used by the JDK |
ActionErrors |
A class that encapsulates the error messages being reported by
the |
ActionForm |
An ActionForm is a JavaBean optionally associated with
one or more |
ActionFormBean |
An ActionFormBean is the definition of a form bean that
is loaded from a |
ActionFormBeanFactory |
An object creation factory which creates action form bean instances, taking
into account the default class name, which may have been specified on the
parent element and which is made available through the object on the top
of the stack, which must be a
org.apache.struts.config.ModuleConfig . |
ActionForward |
An ActionForward represents a destination to which the
controller, |
ActionForwardFactory |
An object creation factory which creates action forward instances, taking
into account the default class name, which may have been specified on the
parent element and which is made available through the object on the top
of the stack, which must be a
org.apache.struts.config.ModuleConfig . |
ActionMapping |
An ActionMapping represents the information that the
controller, |
ActionMappingFactory |
An object creation factory which creates action mapping instances, taking
into account the default class name, which may have been specified on the
parent element and which is made available through the object on the top
of the stack, which must be a
org.apache.struts.config.ModuleConfig . |
ActionMessage |
An encapsulation of an individual message returned by the
|
ActionMessages |
A class that encapsulates messages. |
ActionMessages.ActionMessageItem |
This class is used to store a set of messages associated with a property/key and the position it was initially added to list. |
ActionRedirect | A subclass of {@link ActionForward} which is designed for use in redirecting requests, with support for adding parameters at runtime. |
ActionServlet |
ActionServlet provides the "controller" in the Model-View-Controller (MVC) design pattern for web applications that is commonly known as "Model 2". |
ActionServletWrapper |
Provide a wrapper around an {@link ActionServlet} to expose only those methods needed by other objects. |
AddDataSourcePropertyRule |
Class that calls addProperty() for the top object
on the stack, which must be a
org.apache.struts.config.DataSourceConfig . |
AddTag | Add an element to the surrounding list tag. |
AddTagParent |
Tag classes implementing this interface can contain nested PutTag s.
|
AttributeDefinition | Attribute definition used in a component definition. |
AttributeToScopeTag | Custom tag that puts component's attributes in a scope (request, page, ...). |
BaseFieldTag | Convenience base class for the various input tags for text fields. |
BaseHandlerTag | Base class for tags that render form elements capable of including JavaScript event handlers and/or CSS Style attributes. |
BaseInputTag | Abstract base class for the various input tags. |
BaseTag |
Renders an HTML |
BeanValidatorForm |
Struts validator Passing a POJO JavaBean to the constructor will automatically create an associated
|
BufferedMultipartInputStream | This class implements buffering for an InputStream as well as a readLine method. |
ButtonTag | Renders an HTML BUTTON tag within the Struts framework. |
CancelTag | Tag for input fields of type "cancel". |
CheckboxTag | Tag for input fields of type "checkbox". |
CommonsMultipartRequestHandler |
This class implements the MultipartRequestHandler interface
by providing a wrapper around the Jakarta Commons FileUpload library.
|
CommonsMultipartRequestHandler.CommonsFormFile |
This class implements the Struts FormFile interface by
wrapping the Commons FileUpload FileItem interface. |
CompareTagBase | Abstract base class for comparison tags. |
ComponentConstants | Constants used by Tiles/Components. |
ComponentContext | Component context. |
ComponentDefinition | Definition of a template / component attributes. |
ComponentDefinitionsFactory | Component repository interface. |
ComponentDefinitionsFactoryWrapper | Wrapper from new definition factory interface to old interface. |
ConditionalTagBase | Abstract base class for the various conditional evaluation tags. |
ConfigHelper | NOTE: THIS CLASS IS UNDER ACTIVE DEVELOPMENT. |
ConfigHelperInterface | NOTE: THIS CLASS IS UNDER ACTIVE DEVELOPMENT. |
ConfigRuleSet |
The set of Digester rules required to parse a Struts
configuration file ( |
Constants | Manifest constants for this package. |
ContentLengthExceededException | This exception is thrown when multipart post data exceeds the value given by the Content-Length header |
Controller | A controller is a piece of code called before rendering a jsp page. |
ControllerConfig |
A JavaBean representing the configuration information of a
|
ControllerSupport | Basic implementation of Controller. |
CookieTag | Define a scripting variable based on the value(s) of the specified cookie received with this request. |
CookieTei |
Implementation of TagExtraInfo for the cookie
tag, identifying the scripting object(s) to be made visible.
|
DataSourceConfig |
A JavaBean representing the configuration information of a
WARNING - The properties of this configuration bean are recognized by the default data source implementation, but some or all of them may be ignored by custom data source implementations. |
DefaultModuleConfigFactory | A factory for creating {@link ModuleConfig} instances. |
DefineTag | Define a scripting variable based on the value(s) of the specified bean property. |
DefineTei |
Implementation of TagExtraInfo for the define
tag, identifying the scripting object(s) to be made visible.
|
DefinitionAttribute | Attribute representing a Component Definition. |
DefinitionDispatcherAction |
An Action that dispatches to a Tiles Definition
that is named by the request parameter whose name is specified
by the |
DefinitionNameAttribute | Component attribute. |
DefinitionsFactory | Tiles Definition factory. |
DefinitionsFactory | A factory for definitions. |
DefinitionsFactoryConfig | A TilesFactoryConfig object hold configuration attributes for a tile definition factory. |
DefinitionsFactoryException | Exception thrown when an error occurs while the factory tries to create a new instance mapper. |
DefinitionsUtil | Utilities class for definitions factory. |
DefinitionsUtil.ServletPropertiesMap | Inner class. |
DefinitionTag | This is the tag handler for <tiles:definition>, which defines a tiles (or template / component). |
DefinitionTagSupport | Common base class for tags dealing with Tiles definitions. |
DigestingPlugIn |
An implementation of |
DirectStringAttribute | Component attribute. |
DiskFile | |
DiskMultipartRequestHandler | This is a MultipartRequestHandler that writes file data directly to to temporary files on disk. |
DispatchAction |
An abstract Action that dispatches to a public
method that is named by the request parameter whose name is specified
by the |
DownloadAction | This is an abstract base class that minimizes the amount of special coding that needs to be written to download a file. |
DownloadAction.FileStreamInfo |
A concrete implementation of the StreamInfo interface which
simplifies the downloading of a file from the disk. |
DownloadAction.ResourceStreamInfo |
A concrete implementation of the StreamInfo interface which
simplifies the downloading of a web application resource. |
DownloadAction.StreamInfo |
The information on a file, or other stream, to be downloaded by the
DownloadAction . |
DynaActionForm |
Specialized subclass of USAGE NOTE - Since Struts 1.1, the
|
DynaActionFormClass |
Implementation of |
DynaValidatorActionForm |
This class extends DynaValidatorForm and provides basic field validation based on an XML file. |
DynaValidatorForm |
This class extends DynaActionForm and provides basic field validation based on an XML file. |
EmptyTag | Evalute the nested body content of this tag if the specified value is empty for this request. |
EqualTag | Evaluate the nested body content of this tag if the specified variable and value are equal. |
ErrorsTag | Custom tag that renders error messages if an appropriate request attribute has been created. |
EventActionDispatcher |
An Action helper class that dispatches to to one of the public methods
that are named in the |
EventDispatchAction |
An Action that dispatches to to one of the public methods
that are named in the |
ExceptionConfig |
A JavaBean representing the configuration information of an
|
ExceptionHandler |
An ExceptionHandler is configured in the Struts
configuration file to handle a specific type of exception thrown
by an |
FactoryNotFoundException | Exception thrown when definitions factory is not found. |
FactorySet | Component Definitions factory. |
FieldChecks |
This class contains the default validations that are used in the validator-rules.xml file. |
FileTag | Custom tag for input fields of type "file". |
FormBeanConfig |
A JavaBean representing the configuration information of a
|
FormFile | This interface represents a file that has been uploaded by a client. |
FormPropertyConfig |
A JavaBean representing the configuration information of a
|
FormTag | Custom tag that represents an input form, associated with a bean whose properties correspond to the various fields of the form. |
ForwardAction |
An Action that forwards to the context-relative
URI specified by the |
ForwardConfig |
A JavaBean representing the configuration information of a
|
ForwardingActionForward |
A subclass of |
ForwardTag | Perform a forward or redirect to a page that is looked up in the configuration information associated with our application. |
FrameTag |
Generate an HTML <frame> tag with similar capabilities
as those the <html:link> tag provides for hyperlink
elements. |
GetAttributeTag | Retrieve the value of the specified component/template attribute property, and render it to the current JspWriter as a String. |
GetTag |
This is the tag handler for <tiles:get>, which gets
content from the request scope and either includes the content or prints
it, depending upon the value of the content's direct attribute.
|
GlobalForwardFactory |
An object creation factory which creates global forward instances, taking
into account the default class name, which may have been specified on the
parent element and which is made available through the object on the top
of the stack, which must be a
org.apache.struts.config.ModuleConfig . |
Globals | Global manifest constants for the entire Struts Framework. |
GreaterEqualTag | Evaluate the nested body content of this tag if the specified variable is greater than or equal to the specified value. |
GreaterThanTag | Evaluate the nested body content of this tag if the specified variable is greater than the specified value. |
HeaderTag | Define a scripting variable based on the value(s) of the specified header received with this request. |
HeaderTei |
Implementation of TagExtraInfo for the header
tag, identifying the scripting object(s) to be made visible.
|
HiddenTag | Custom tag for input fields of type "hidden". |
HtmlTag | Renders an HTML element with appropriate language attributes if there is a current Locale available in the user's session. |
I18nFactorySet | Definitions factory. |
ImageButtonBean | A simple JavaBean to encapsulate the request parameters sent for an HTML input element of type image. |
ImageTag | Tag for input fields of type "image". |
ImgTag | Generate an IMG tag to the specified image URI. |
ImportAttributeTag | Import attribute from component to requested scope. |
IncludeAction |
An Action that includes the context-relative
URI specified by the |
IncludeTag |
Define the contents of a specified intra-application request as a
page scope attribute of type java.lang.String . |
IncludeTei |
Implementation of TagExtraInfo for the include
tag, identifying the scripting object(s) to be made visible.
|
InitDefinitionsTag | Init definitions factory. |
InsertTag | This is the tag handler for <tiles:insert>, which includes a template. |
InsertTag.DirectStringHandler | Handle insert direct string. |
InsertTag.InsertHandler | Real handler, after attribute resolution. |
InsertTag.TagHandler | Inner Interface. |
InvalidCancelException |
Thrown when a token generated by the Cancel tag is found in the request, but the cancellable property for the Action Mapping is not set. |
IterateTag | Custom tag that iterates the elements of a collection, which can be either an attribute or the property of an attribute. |
IterateTei |
Implementation of TagExtraInfo for the iterate
tag, identifying the scripting object(s) to be made visible.
|
IteratorAdapter | Utility method for converting Enumeration to an Iterator class. |
JavascriptValidatorTag |
Custom tag that generates JavaScript for client side validation based
on the validation rules loaded by the ValidatorPlugIn
defined in the struts-config.xml file.
|
LabelValueBean | A simple JavaBean to represent label-value pairs. |
LazyValidatorForm |
Struts Lazy There isn't really that much to this implementation as most of the lazy behaviour is in
|
LessEqualTag | Evaluate the nested body content of this tag if the specified variable is less than or equal to the specified value. |
LessThanTag | Evaluate the nested body content of this tag if the specified variable is less than the specified value. |
LinkTag | Generate a URL-encoded hyperlink to the specified URI. |
LocaleAction | Implementation of Action that changes the user's {@link java.util.Locale} and forwards to a page, based on request level parameters that are set (language, country, & page). |
LookupDispatchAction |
An abstract Action that dispatches to the subclass mapped
|
MappingDispatchAction |
An abstract Action that dispatches to a public
method that is named by the |
MatchTag | Evalute the nested body content of this tag if the specified value is a substring of the specified variable. |
MaxLengthExceededException | This exception is thrown when multipart post data exceeds the maximum value set |
MenuItem | Interface for MenuItems. |
MessageResources |
General purpose abstract class that describes an API for retrieving
Locale-sensitive messages from underlying resource locations of an
unspecified design, and optionally utilizing the MessageFormat
class to produce internationalized messages with parametric replacement.
|
MessageResourcesConfig |
A JavaBean representing the configuration information of a
|
MessageResourcesFactory |
Factory for MessageResources instances. |
MessagesNotPresentTag | Evalute the nested body content of this tag if the specified value is not present for this request. |
MessagesPresentTag |
Evalute to true if an ActionMessages class or a
class that can be converted to an ActionMessages class is in
request scope under the specified key and there is at least one message in the
class or for the property specified.
|
MessagesTag | Custom tag that iterates the elements of a message collection. |
MessagesTei |
Implementation of TagExtraInfo for the messages
tag, identifying the scripting object(s) to be made visible.
|
MessageTag |
Custom tag that retrieves an internationalized messages string (with
optional parametric replacement) from the ActionResources
object stored as a context attribute by our associated
ActionServlet implementation.
|
ModuleConfig |
The collection of static configuration information that describes a Struts-based module. |
ModuleConfigFactory | A factory interface for creating {@link ModuleConfig}s. |
ModuleConfigImpl |
The collection of static configuration information that describes a Struts-based module. |
ModuleConfigVerifier |
Convenient implementation of {@link PlugIn} that performs as many verification tests on the information stored in the {@link ModuleConfig} for this module as is practical. |
ModuleException | Used for specialized exception handling. |
ModuleUtils | General purpose utility methods related to module processing. |
MultiboxTag | Tag for input fields of type "checkbox". |
MultipartBoundaryInputStream | This class encapsulates parsing functionality for RFC1867, multipart/form-data. |
MultipartElement | This class represents an element in a multipart request. |
MultipartIterator | The MultipartIterator class is responsible for reading the input data of a multipart request and splitting it up into input elements, wrapped inside of a {@link org.apache.struts.upload.MultipartElement MultipartElement} for easy definition. |
MultipartRequestHandler | MultipartRequestHandler provides an standard interface for struts to deal with file uploads from forms with enctypes of "multipart/form-data". |
MultipartRequestWrapper | This class functions as a wrapper around HttpServletRequest to provide working getParameter methods for multipart requests. |
MultipartValueStream | This class implements an inputStream that reads another stream until a multipart boundary is found. |
NestedCheckboxTag | NestedCheckboxTag. |
NestedDefineTag | NestedDefineTag. |
NestedDefineTei | NestedDefineTei to make sure that the implied setting of the name property of a nested tag is properly handed in the casting of the defined object. |
NestedEmptyTag | NestedEmptyTag. |
NestedEqualTag | NestedEqualTag. |
NestedErrorsTag | NestedErrorsTag. |
NestedFileTag | NestedFileTag. |
NestedFormTag | NestedFormTag. |
NestedGreaterEqualTag | NestedGreaterEqualTag. |
NestedGreaterThanTag | NestedGreaterThanTag. |
NestedHiddenTag | NestedHiddenTag. |
NestedImageTag | NestedMultiboxTag. |
NestedImgTag |
NestedImgTag, renders the nested version of the |
NestedIterateTag | NestedIterateTag. |
NestedIterateTei | NestedIterateTei Extending the original tag's tei class, so that we can make the "id" attribute optional, so that those who want to script can add it if they need it otherwise we can maintain the nice lean tag markup. |
NestedLessEqualTag | NestedLessEqualTag. |
NestedLessThanTag | NestedLessThanTag. |
NestedLinkTag | NestedLinkTag. |
NestedMatchTag | NestedMatchTag. |
NestedMessagesNotPresentTag | NestedMessagesNotPresentTag. |
NestedMessagesPresentTag | NestedMessagesPresentTag. |
NestedMessagesTag | NestedMessagesTag. |
NestedMessageTag | NestedWriteTag. |
NestedMultiboxTag | NestedMultiboxTag. |
NestedNameSupport | This is so that managing classes can tell if a nested tag needs to have its name property set. |
NestedNotEmptyTag | NestedNotEmptyTag. |
NestedNotEqualTag | NestedNotEqualTag. |
NestedNotMatchTag | NestedNotMatchTag. |
NestedNotPresentTag | NestedNotPresentTag. |
NestedOptionsCollectionTag | NestedOptionsCollectionTag. |
NestedOptionsTag | NestedOptionsTag. |
NestedParentSupport | This interface is so managing classes of the nested tag can identify a tag as a parent tag that other tags retrieve nested properties from. |
NestedPasswordTag | NestedPasswordTag. |
NestedPresentTag | NestedPresentTag. |
NestedPropertyHelper |
A simple helper class that does everything that needs to be done to get the nested tag extension to work. |
NestedPropertySupport | This interface is for managing classes of the nested extension, so they can know to set the tag's property property. |
NestedPropertyTag | NestedPropertyTag. |
NestedRadioTag | NestedRadioTag. |
NestedReference | So that a nested hierarchy can penetrate a dynamic JSP include, this class will hold the details of a bean name and nested property. |
NestedRootTag | NestedRootTag. |
NestedSelectTag | NestedSelectTag. |
NestedSizeTag | NestedSizeTag. |
NestedSubmitTag | NestedSubmitTag. |
NestedTagSupport | This is to simply allow managing classes to identify the tags to invoke common methods against them. |
NestedTextareaTag | NestedTextareaTag. |
NestedTextTag | NestedTextTag. |
NestedWriteNestingTag | NestedWriteNestingTag. |
NestedWriteNestingTei | NestedWriteNestingTei This class will allow the nested:writeNesting tag to actually do what the doc says and make a scripting variable as an option (when "id" is supplied). |
NestedWriteTag | NestedWriteTag. |
NoSuchDefinitionException | Exception thrown when a definition is not found. |
NotEmptyTag | Evalute the nested body content of this tag if the specified value is not empty for this request. |
NotEqualTag | Evaluate the nested body content of this tag if the specified variable and value are not equal. |
NotMatchTag | Evalute the nested body content of this tag if the specified value is not a substring of the specified variable. |
NotPresentTag | Evalute the nested body content of this tag if the specified value is not present for this request. |
OptionsCollectionTag | Tag for creating multiple <select> options from a collection. |
OptionsTag | Tag for creating multiple <select> options from a collection. |
OptionTag | Tag for select options. |
PageTag | Define a scripting variable that exposes the requested page context item as a scripting variable and a page scope bean. |
PageTei |
Implementation of TagExtraInfo for the page
tag, identifying the scripting object(s) to be made visible.
|
ParameterTag | Define a scripting variable based on the value(s) of the specified parameter received with this request. |
ParameterTei |
Implementation of TagExtraInfo for the parameter
tag, identifying the scripting object(s) to be made visible.
|
PasswordTag | Custom tag for input fields of type "password". |
PathAttribute | Component attribute. |
PlugIn |
A PlugIn is a configuration wrapper for a
module-specific resource or service that needs to be notified about
application startup and application shutdown events (corresponding to when
the container calls |
PlugInConfig |
A JavaBean representing the configuration information of a
|
PlugInSetPropertyRule |
Class that records the name and value of a configuration property to be
used in configuring a PlugIn instance when instantiated. |
PresentTag | Evalute the nested body content of this tag if the specified value is present for this request. |
PropertyMessageResources |
Concrete subclass of MessageResources that reads message keys
and corresponding strings from named property resources in the same manner
that java.util.PropertyResourceBundle does. |
PropertyMessageResourcesFactory |
Factory for PropertyMessageResources instances. |
PutListTag | PutList tag implementation. |
PutListTagParent | Tag classes implementing this interface can contains nested PutTag. |
PutTag | Put an attribute in enclosing attribute container tag. |
PutTagParent | Tag classes implementing this interface can contain nested PutTag. |
RadioTag | Tag for input fields of type "radio". |
RedeployableActionServlet |
WebLogic (at least v6 and v7) attempts to serialize the TilesRequestProcessor when re-deploying the Webapp in development mode. |
RedirectingActionForward |
A subclass of ActionForward that defaults the
|
RedirectTag | Generate a URL-encoded redirect to the specified URI. |
ReloadableDefinitionsFactory | A reloadable factory. |
ReloadableDefinitionsFactory.ServletPropertiesMap | Inner class. |
ReloadDefinitionsAction |
A standard Action that calls the
|
RequestActionMapping |
Subclass of |
RequestProcessor |
RequestProcessor contains the processing logic that the {@link ActionServlet} performs as it receives each servlet request from the container. |
RequestUtils |
General purpose utility methods related to processing a servlet request in the Struts controller framework. |
ResetTag | Tag for input fields of type "reset". |
Resources | This class helps provides some useful methods for retrieving objects from different scopes of the application. |
ResourceTag | Define a scripting variable based on the contents of the specified web application resource. |
ResourceTei |
Implementation of TagExtraInfo for the resource
tag, identifying the scripting object(s) to be made visible.
|
ResponseUtils | General purpose utility methods related to generating a servlet response in the Struts controller framework. |
RewriteTag | Generate a URL-encoded URI as a string. |
SelectTag | Custom tag that represents an HTML select element, associated with a bean property specified by our attributes. |
ServletContextWriter |
A PrintWriter implementation that uses the logging facilities of a
javax.servlet.ServletContext to output its results. |
SessionActionMapping |
Subclass of |
SetActionFormBeanClassRule | Class that sets the name of the class to use when creating action form bean instances. |
SetActionForwardClassRule | Class that sets the name of the class to use when creating global forward instances. |
SetActionMappingClassRule | Class that sets the name of the class to use when creating action mapping instances. |
SimpleMenuItem | A MenuItem implementation. |
SizeTag | Define a scripting variable that will contain the number of elements found in a specified array, Collection, or Map. |
SizeTei |
Implementation of TagExtraInfo for the size
tag, identifying the scripting object(s) to be made visible.
|
StrutsTag | Define a scripting variable that exposes the requested Struts internal configuraton object. |
StrutsTei |
Implementation of TagExtraInfo for the struts
tag, identifying the scripting object(s) to be made visible.
|
SubmitTag | Tag for input fields of type "submit". |
SwitchAction |
A standard Action that switches to a new module and then forwards control to a URI (specified in a number of possible ways) within the new module. Valid request parameters for this Action are:
|
TagUtils | Provides helper methods for JSP tags. |
TagUtils | Collection of utilities. |
TextareaTag | Custom tag for input fields of type "textarea". |
TextTag | Custom tag for input fields of type "text". |
TilesAction | Base class for Tiles Actions. |
TilesException | Root class for all Tiles-exceptions. |
TilesPlugin | Tiles Plugin used to initialize Tiles. |
TilesRequestProcessor |
RequestProcessor contains the processing logic that the Struts controller servlet performs as it receives each servlet request from the container. This processor subclasses the Struts RequestProcessor in order to intercept calls to forward or include. |
TilesUtil | Class containing utility methods for Tiles. |
TilesUtilImpl | Default implementation of TilesUtil. |
TilesUtilStrutsImpl | TilesUtil implementation for Struts 1.1 with one single factory. |
TilesUtilStrutsModulesImpl | Implementation of TilesUtil for Struts multi modules. |
TokenProcessor | TokenProcessor is responsible for handling all token related functionality. |
UntypedAttribute | Common implementation of attribute definition. |
UrlController | Tiles controller including a local URL. |
UseAttributeTag | Custom tag exposing a component attribute to page. |
UseAttributeTei |
Implementation of TagExtraInfo for the UseAttribute
tag, identifying the scripting object(s) to be made visible.
|
ValidatorActionForm |
This class extends ValidatorForm and provides basic field validation based on an XML file. |
ValidatorForm |
This class extends ActionForm and provides basic field validation based on an XML file. |
ValidatorPlugIn |
Loads ValidatorResources based on configuration in the
struts-config.xml file.
|
ValidWhen | This class contains the validwhen validation that is used in the validator-rules.xml file. |
ValidWhenLexer | |
ValidWhenParser | |
ValidWhenParserTokenTypes | |
ViewDefinitionsAction |
An Action that writes the definitions of the Tiles factory. |
WildcardHelper | This class is an utility class that perform wilcard-patterns matching and isolation taken from Apache Cocoon. |
WriteTag | Tag that retrieves the specified property of the specified bean, converts it to a String representation (if necessary), and writes it to the current output stream, optionally filtering characters that are sensitive in HTML. |
XhtmlTag | This tag tells all other html taglib tags to render themselves in xhtml. |
XmlAttribute | A property key-value pair. |
XmlDefinition | A definition read from an XML definitions file. |
XmlDefinitionsSet | A set of definitions read from XML definitions file. |
XmlListAttribute |
An attribute as a List .
|
XmlParser | Parse an XML definitions file. |