A B C D E F G H I L M N O P R S T U V W

A

ACTION_BEAN_CONTEXT_FACTORY - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the name of an ActionBeanContextFactory class.
ACTION_BEAN_PROPERTY_BINDER - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the name of the ActionResolver class.
ACTION_RESOLVER - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the name of the ActionResolver class.
ActionBean - Interface in net.sourceforge.stripes.action
Interface for all classes that respond to user interface events.
ActionBeanContext - Class in net.sourceforge.stripes.action
Encapsulates information about the current request.
ActionBeanContext() - Constructor for class net.sourceforge.stripes.action.ActionBeanContext
 
ActionBeanContextFactory - Interface in net.sourceforge.stripes.controller
Interface for classes that can instantiate and supply new instances of the ActionBeanContext class, or subclasses thereof.
ActionBeanPropertyBinder - Interface in net.sourceforge.stripes.controller
Interface for class(es) responsible for taking the String/String[] properties contained in the HttpServletRequest and: Converting them to the rich type of the property on the target JavaBean Setting the properties on the JavaBean using the appropriate mechanism
ActionClassCache - Class in net.sourceforge.stripes.controller
Quick and dirty class which caches the Class objects representing ActionBeans since it is expensive to look these up using the ResolverUtil.
ActionResolver - Interface in net.sourceforge.stripes.controller
Resolvers are responsible for locating ActionBean instances that can handle the submitted request.
add(String, ValidationError) - Method in class net.sourceforge.stripes.validation.ValidationErrors
Synonym for put(String field, ValidationError error).
addAll(String, List<ValidationError>) - Method in class net.sourceforge.stripes.validation.ValidationErrors
Synonym for putAll().
addGlobalError(ValidationError) - Method in class net.sourceforge.stripes.validation.ValidationErrors
Allows for the addition of errors that are not tied to a specific field.
addParameter(String, Object) - Method in class net.sourceforge.stripes.tag.LinkTag
Used by stripes:link-param tags (and possibly other tags at some distant point in the future) to add a parameter to the parent link tag.
AnnotatedClassActionResolver - Class in net.sourceforge.stripes.controller
Uses Annotations on classes to identify the ActionBean that corresponds to the current request.
AnnotatedClassActionResolver() - Constructor for class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
 
appendParameter(StringBuilder, String, Object) - Method in class net.sourceforge.stripes.tag.LinkTag
Appends the value of a scalar parameter to the URL.

B

bind(ActionBean, ActionBeanContext, boolean) - Method in interface net.sourceforge.stripes.controller.ActionBeanPropertyBinder
Populates all the properties in the request which have a matching property in the target bean.
bind(ActionBean, String, Object) - Method in interface net.sourceforge.stripes.controller.ActionBeanPropertyBinder
Bind an individual property with the name specified to the bean supplied.
bind(ActionBean, ActionBeanContext, boolean) - Method in class net.sourceforge.stripes.controller.OgnlActionBeanPropertyBinder
Loops through the parameters contained in the request and attempts to bind each one to the supplied ActionBean.
bind(ActionBean, String, Object) - Method in class net.sourceforge.stripes.controller.OgnlActionBeanPropertyBinder
Uses Ognl to attempt the setting of the named property on the target bean.
bindValues(ActionBean, ActionBeanContext, boolean) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Invokes the configured property binder in order to populate the bean's properties from the values contained in the request.
BooleanTypeConverter - Class in net.sourceforge.stripes.validation
Performs a fairly aggressive conversion of a String to a boolean.
BooleanTypeConverter() - Constructor for class net.sourceforge.stripes.validation.BooleanTypeConverter
 
BootstrapPropertyResolver - Class in net.sourceforge.stripes.config
Resolves configuration properties that are used to bootstrap the system.
BootstrapPropertyResolver(FilterConfig) - Constructor for class net.sourceforge.stripes.config.BootstrapPropertyResolver
Constructs a new BootstrapPropertyResolver with the given ServletConfig.
BUNDLE_NAME - Static variable in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
The name of the default resource bundle for Stripes.
ByteTypeConverter - Class in net.sourceforge.stripes.validation
Basic type converter for converting strings to bytes.
ByteTypeConverter() - Constructor for class net.sourceforge.stripes.validation.ByteTypeConverter
 

C

checkSingleRequiredField(String, String, String[], ValidationErrors) - Method in class net.sourceforge.stripes.controller.OgnlActionBeanPropertyBinder
Checks to see if a single field's set of values are 'present', where that is defined as having one or more values, and where each value is a non-empty String after it has had white space trimmed from each end.
CONFIG_CLASS - Static variable in class net.sourceforge.stripes.controller.StripesFilter
Key used to lookup the name of the Configuration class used to configure Stripes.
ConfigurableComponent - Interface in net.sourceforge.stripes.config
Interface which is extended by all the major configurable chunks of Stripes.
Configuration - Interface in net.sourceforge.stripes.config
Type safe interface for accessing configuration information used to configure Stripes.
configuration - Variable in class net.sourceforge.stripes.localization.DefaultLocalePicker
Stores a reference to the configuration passed in at initialization.
configuration - Variable in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Stores a reference to the Configuration passed in at initialization time.
CONTEXT_CLASS_NAME - Static variable in class net.sourceforge.stripes.controller.DefaultActionBeanContextFactory
The name of the configuration property used for the context class name.
convert(String, Class<? extends Boolean>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.BooleanTypeConverter
Converts a String to a Boolean in accordance with the specification laid out in the class level javadoc.
convert(String, Class<? extends Byte>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.ByteTypeConverter
Converts a String to a Byte in accordance with the rules laid out in the class level javadoc.
convert(String, Class<? extends Date>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.DateTypeConverter
Attempts to convert a String to a Date object.
convert(String, Class<? extends Double>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.DoubleTypeConverter
Converts the input to an object of type Double.
convert(String, Class<? extends Enum>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.EnumeratedTypeConverter
 
convert(String, Class<? extends Float>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.FloatTypeConverter
Converts the input to an object of type Double.
convert(String, Class<? extends Integer>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.IntegerTypeConverter
 
convert(String, Class<? extends Long>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.LongTypeConverter
 
convert(String, Class<? extends Number>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.PercentageTypeConverter
Converts the input to a subclass of Number based on the targetType provided.
convert(String, Class<? extends Short>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.ShortTypeConverter
 
convert(String, Class<? extends T>, Collection<ValidationError>) - Method in interface net.sourceforge.stripes.validation.TypeConverter
Convert a String to the target type supported by this converter.

D

DateFormatter - Class in net.sourceforge.stripes.format
Implements a basic formatter for Date objects.
DateFormatter() - Constructor for class net.sourceforge.stripes.format.DateFormatter
 
DateTypeConverter - Class in net.sourceforge.stripes.validation
A TypeConverter that aggressively attempts to convert a String to a java.util.Date object.
DateTypeConverter() - Constructor for class net.sourceforge.stripes.validation.DateTypeConverter
 
debug(Throwable, Object...) - Method in class net.sourceforge.stripes.util.Log
Logs a Throwable and optional message parts at level debug.
debug(Object...) - Method in class net.sourceforge.stripes.util.Log
Logs one or more message parts at level debug.
DEFAULT_FOOTER - Static variable in class net.sourceforge.stripes.tag.ErrorsTag
The footer that will be emitted if no footer is defined in the resource bundle.
DEFAULT_HEADER - Static variable in class net.sourceforge.stripes.tag.ErrorsTag
The header that will be emitted if no header is defined in the resource bundle.
DefaultActionBeanContextFactory - Class in net.sourceforge.stripes.controller
Implements an ActionBeanContextFactory that allows for instantiation of application specific ActionBeanContext classes.
DefaultActionBeanContextFactory() - Constructor for class net.sourceforge.stripes.controller.DefaultActionBeanContextFactory
 
DefaultConfiguration - Class in net.sourceforge.stripes.config
Centralized location for defaults for all Configuration properties.
DefaultConfiguration() - Constructor for class net.sourceforge.stripes.config.DefaultConfiguration
 
DefaultFormatterFactory - Class in net.sourceforge.stripes.format
Very simple default implementation of a formatter factory that is aware of how to format dates and numbers.
DefaultFormatterFactory() - Constructor for class net.sourceforge.stripes.format.DefaultFormatterFactory
 
DefaultHandler - Annotation Type in net.sourceforge.stripes.action
Marker annotation to specify that a method within an ActionBean is the default handler for events if a specific event cannot be identified.
DefaultLocalePicker - Class in net.sourceforge.stripes.localization
Default locale picker that uses a comma separated list of locales in the servlet init parameters to determine the set of locales that are supported by the application.
DefaultLocalePicker() - Constructor for class net.sourceforge.stripes.localization.DefaultLocalePicker
 
DefaultLocalizationBundleFactory - Class in net.sourceforge.stripes.localization
Very simple default implementation of a bundle factory.
DefaultLocalizationBundleFactory() - Constructor for class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
 
DefaultPopulationStrategy - Class in net.sourceforge.stripes.tag
Default implementation of the form input tag population strategy.
DefaultPopulationStrategy() - Constructor for class net.sourceforge.stripes.tag.DefaultPopulationStrategy
 
DefaultTagErrorRenderer - Class in net.sourceforge.stripes.tag
This default implementation of the TagErrorRenderer interface sets the html class attribute to 'error'.
DefaultTagErrorRenderer() - Constructor for class net.sourceforge.stripes.tag.DefaultTagErrorRenderer
 
DefaultTagErrorRendererFactory - Class in net.sourceforge.stripes.tag
A basic implementation of the TagErrorRendererFactory interface that always constructs and returns the DefaultTagErrorRenderer.
DefaultTagErrorRendererFactory() - Constructor for class net.sourceforge.stripes.tag.DefaultTagErrorRendererFactory
 
DefaultTypeConverterFactory - Class in net.sourceforge.stripes.validation
Default TypeConverterFactory implementation that simply creates an instance level map of all the TypeConverters included in the Stripes distribution, and their applicable classes.
DefaultTypeConverterFactory() - Constructor for class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
 
delete() - Method in class net.sourceforge.stripes.action.FileBean
Deletes the temporary file associated with this file upload if one still exists.
destroy() - Method in class net.sourceforge.stripes.controller.StripesFilter
Does nothing.
DispatcherServlet - Class in net.sourceforge.stripes.controller
Servlet that controls how requests to the Stripes framework are processed.
DispatcherServlet() - Constructor for class net.sourceforge.stripes.controller.DispatcherServlet
 
doAfterBody() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Manages iteration, running again if there are more errors to display.
doAfterBody() - Method in class net.sourceforge.stripes.tag.FormTag
Just returns SKIP_BODY so that the body is included only once.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Ensure that the body is evaluated only once.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputTextTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.LinkParamTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.LinkTag
Does nothing.
doAfterEndTag() - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRenderer
Resets the tag's class attribute to it's original value in case the tag gets pooled.
doAfterEndTag() - Method in interface net.sourceforge.stripes.tag.TagErrorRenderer
Executed after the end of rendering of the input tag, including its body and end tag.
doBeforeStartTag() - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRenderer
Changes the tag's class attribute to "error".
doBeforeStartTag() - Method in interface net.sourceforge.stripes.tag.TagErrorRenderer
Executed before the start of rendering of the input tag.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Looks up the appropriate value to use for the submit button and then writes the tag out to the page.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Does the main work of the tag, including determining the tags state (checked or not) and writing out a singleton tag representing the checkbox.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputFileTag
Writes out a singleton tag representing the values stored on this tag instance.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Determines the value(s) that will be used for the tag and then proceeds to generate one or more hidden fields to contain those values.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Locates the option's parent select tag, determines selection state and then writes out an option tag with an appropriate body.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Determines the state of the set of radio buttons and then writes the radio button to the output stream with checked="checked" or not as appropriate.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Writes out the close select tag (</select>).
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Abstract method implemented in child classes instead of doEndTag().
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Determines which source is applicable for the contents of the textarea and then writes out the textarea tag including the body.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputTextTag
Determines which source is applicable for the value of the text field and then writes out the tag.
doEndTag() - Method in class net.sourceforge.stripes.tag.ErrorsFooterTag
 
doEndTag() - Method in class net.sourceforge.stripes.tag.ErrorsHeaderTag
 
doEndTag() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Output the error list if this was an empty body tag and we're fully controlling output*
doEndTag() - Method in class net.sourceforge.stripes.tag.FormTag
Writes things out in the following order: The form open tag Hidden fields for the form name and source page The buffered body content The form close tag
doEndTag() - Method in class net.sourceforge.stripes.tag.IndividualErrorTag
Outputs the error for the current iteration of the parent ErrorsTag.
doEndTag() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Does nothing.
doEndTag() - Method in class net.sourceforge.stripes.tag.InputOptionsEnumerationTag
Does nothing.
doEndTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Final implementation of the doEndTag() method that allows the base InputTagSupport class to insert functionality before and after the tag performs it's doEndTag equivelant method.
doEndTag() - Method in class net.sourceforge.stripes.tag.LinkParamTag
Figures out what to use as the value, and then finds the parent link and adds the parameter.
doEndTag() - Method in class net.sourceforge.stripes.tag.LinkTag
Prepends the context to the href attibute if necessary, and then folds all the registered parameters into the URL.
doEndTag() - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Abstract method from the Tag interface.
doEndTag() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
Does nothing.
doEndTag() - Method in class net.sourceforge.stripes.tag.WizardFieldsTag
Performs the main work of the tag, as described in the class level javadoc.
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class net.sourceforge.stripes.controller.StripesFilter
Performs the primary work of the filter, including constructing a StripesRequestWrapper to wrap the HttpServletRequest, and using the configured LocalePicker to decide which Locale will be used to process the request.
doGet(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Implemented as a simple call to doPost(request, response).
doInitBody() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Sets the context variables for the current error and index
doInitBody() - Method in class net.sourceforge.stripes.tag.FormTag
Np-op method.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputTextTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.LinkParamTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.LinkTag
Does nothing.
DontValidate - Annotation Type in net.sourceforge.stripes.action
Marker annotation to specify that the event handled by the annotated method should not have validation run on it before the handler is invoked.
doPost(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Uses the configured actionResolver to locate the appropriate ActionBean type and method to handle the current request.
doPreConversionValidations(ParameterName, String[], Validate, List<ValidationError>) - Method in class net.sourceforge.stripes.controller.OgnlActionBeanPropertyBinder
Performs several basic validations on the String value supplied in the HttpServletRequest, based on information provided in annotations on the ActionBean.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputFileTag
Locates the parent tag and modifies it's method and enctype to be suitable for file upload.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Sets the tag up as a hidden tag.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Sets the input tag type to "radio".
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Writes out the opening <select name="foo"> tag.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Abstract method implemented in child classes instead of doStartTag().
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputTextTag
Sets type input tags type to "text".
doStartTag() - Method in class net.sourceforge.stripes.tag.ErrorsFooterTag
 
doStartTag() - Method in class net.sourceforge.stripes.tag.ErrorsHeaderTag
 
doStartTag() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Determines if the tag should display errors based on the action that it is displaying for, and then fetches the appropriate list of errors and makes sure it is non-empty.
doStartTag() - Method in class net.sourceforge.stripes.tag.FormTag
Does nothing except return EVAL_BODY_BUFFERED.
doStartTag() - Method in class net.sourceforge.stripes.tag.IndividualErrorTag
Does nothing
doStartTag() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Iterates through the collection and uses an instance of InputOptionTag to generate each individual option with the correct state.
doStartTag() - Method in class net.sourceforge.stripes.tag.InputOptionsEnumerationTag
Attempts to instantiate the Class object representing the enum and fetch the values of the enum.
doStartTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Final implementation of the doStartTag() method that allows the base InputTagSupport class to insert functionality before and after the tag performs it's doStartTag equivelant method.
doStartTag() - Method in class net.sourceforge.stripes.tag.LinkParamTag
Does nothing.
doStartTag() - Method in class net.sourceforge.stripes.tag.LinkTag
Does nothing.
doStartTag() - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Abstract method from the Tag interface.
doStartTag() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
The main work method of the tag.
doStartTag() - Method in class net.sourceforge.stripes.tag.WizardFieldsTag
Skips over the body because there shouldn't be one.
DoubleTypeConverter - Class in net.sourceforge.stripes.validation
Basic TypeConverter that will convert from Strings to Numbers of type Double.
DoubleTypeConverter() - Constructor for class net.sourceforge.stripes.validation.DoubleTypeConverter
 

E

encode(String) - Static method in class net.sourceforge.stripes.util.HtmlUtil
Replaces special HTML characters from the set [<, >, ", ', &] with their HTML escape codes.
endElement(String, String, String) - Method in class net.sourceforge.stripes.tag.TagLibraryValidator.JSPSaxHandler
 
EnumeratedTypeConverter - Class in net.sourceforge.stripes.validation
Converts the String form of an Enumerated type into the Enum value that it represents.
EnumeratedTypeConverter() - Constructor for class net.sourceforge.stripes.validation.EnumeratedTypeConverter
 
equals(Object) - Method in class net.sourceforge.stripes.controller.ParameterName
Checks for equality as efficiently as possible.
equals(Object) - Method in class net.sourceforge.stripes.validation.LocalizableError
Generated equals method that compares each field and super.equals().
equals(Object) - Method in class net.sourceforge.stripes.validation.ScopedLocalizableError
Generated equals method that checks all fields and super.equals().
equals(Object) - Method in class net.sourceforge.stripes.validation.SimpleError
Generated equals method that checks all fields for equality.
error(Throwable, Object...) - Method in class net.sourceforge.stripes.util.Log
Logs a Throwable and optional message parts at level error.
error(Object...) - Method in class net.sourceforge.stripes.util.Log
Logs one or more message parts at level error.
errorRenderer - Variable in class net.sourceforge.stripes.tag.InputTagSupport
The error renderer to be utilized for error output of this input tag
ErrorsFooterTag - Class in net.sourceforge.stripes.tag
Can be used within a stripes:errors tag to show a footer on an error list.
ErrorsFooterTag() - Constructor for class net.sourceforge.stripes.tag.ErrorsFooterTag
 
ErrorsHeaderTag - Class in net.sourceforge.stripes.tag
Can be used within a stripes:errors tag to show a header on an error list.
ErrorsHeaderTag() - Constructor for class net.sourceforge.stripes.tag.ErrorsHeaderTag
 
ErrorsTag - Class in net.sourceforge.stripes.tag
The errors tag has two modes, one where it displays all validation errors in a list and a second mode when there is a single enclosed field-error tag that has no name attribute in which case this tag iterates over the body, displaying each error in turn in place of the field-error tag.
ErrorsTag() - Constructor for class net.sourceforge.stripes.tag.ErrorsTag
 
ErrorsTagExtraInfo - Class in net.sourceforge.stripes.tag
This tag extra info exposes index and error context variables for the body of the errors tag.
ErrorsTagExtraInfo() - Constructor for class net.sourceforge.stripes.tag.ErrorsTagExtraInfo
 
evaluateExpression(String, Class<R>) - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Evaluates a single expression and returns the result.
execute(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.action.ForwardResolution
Attempts to forward the user to the specified path.
execute(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.action.OnwardResolution
Method should be implemented by sublcasses to perform the actual task of sending the user to the path specified.
execute(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.action.RedirectResolution
Attempts to redirect the user to the specified URL.
execute(HttpServletRequest, HttpServletResponse) - Method in interface net.sourceforge.stripes.action.Resolution
Called by the Stripes dispatcher to invoke the Resolution.
execute(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.action.StreamingResolution
Streams data from the InputStream or Reader to the response's OutputStream or PrinterWriter, using a moderately sized buffer to ensure that the operation is reasonable efficient.

F

fatal(Throwable, Object...) - Method in class net.sourceforge.stripes.util.Log
Logs a Throwable and optional message parts at level fatal.
fatal(Object...) - Method in class net.sourceforge.stripes.util.Log
Logs one or more message parts at level fatal.
fieldErrors - Variable in class net.sourceforge.stripes.tag.InputTagSupport
A list of the errors related to this input tag instance
FileBean - Class in net.sourceforge.stripes.action
Represents a file that was submitted as part of an HTTP POST request.
FileBean(File, String, String) - Constructor for class net.sourceforge.stripes.action.FileBean
Constructs a FileBean pointing to an on-disk representation of the file uploaded by the user.
FileUploadLimitExceededException - Exception in net.sourceforge.stripes.controller
Exception that is thrown when the post size of a multipart/form post used for file upload exceeds the configured maximum size.
FileUploadLimitExceededException(int, int) - Constructor for exception net.sourceforge.stripes.controller.FileUploadLimitExceededException
Constructs a new exception that contains the limt that was violated, and the size of the post that violated it, both in bytes.
FloatTypeConverter - Class in net.sourceforge.stripes.validation
Basic TypeConverter that converts Strings to Numbers of type Float.
FloatTypeConverter() - Constructor for class net.sourceforge.stripes.validation.FloatTypeConverter
 
format(Date) - Method in class net.sourceforge.stripes.format.DateFormatter
Formats a Date as a String using the rules supplied when the formatter was built.
format(T) - Method in interface net.sourceforge.stripes.format.Formatter
Formats the supplied value as a String.
format(Number) - Method in class net.sourceforge.stripes.format.NumberFormatter
Formats the number supplied as a String.
format(Object) - Method in class net.sourceforge.stripes.tag.InputTagSupport
Attempts to format an object using the Stripes formatting system.
formatStrings - Static variable in class net.sourceforge.stripes.validation.DateTypeConverter
The default set of date patterns used to parse dates with SimpleDateFormat.
Formatter<T> - Interface in net.sourceforge.stripes.format
Interface that is used to provide a relatively simple formatting interface to the rest of the system.
FORMATTER_FACTORY - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the name of the FormatterFactory class.
FormatterFactory - Interface in net.sourceforge.stripes.format
Interface for creating instances of formatter classes that are capable of formatting the types specified into Strings.
FormTag - Class in net.sourceforge.stripes.tag
Form tag for use with the Stripes framework.
FormTag() - Constructor for class net.sourceforge.stripes.tag.FormTag
 
ForwardResolution - Class in net.sourceforge.stripes.action
Resolution that uses the Servlet API to forward the user to another path within the same web application using a server side forward.
ForwardResolution(String) - Constructor for class net.sourceforge.stripes.action.ForwardResolution
Simple constructor that takes in the path to forward the user to.

G

get(String) - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Gets the value of the named attribute, or null if it is not set.
getAccept() - Method in class net.sourceforge.stripes.tag.FormTag
 
getAccept() - Method in class net.sourceforge.stripes.tag.InputFileTag
Returns the value, if any, set with setAccept().
getAcceptCharset() - Method in class net.sourceforge.stripes.tag.FormTag
 
getAccesskey() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getAction() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Returns the value set with setAction().
getAction() - Method in class net.sourceforge.stripes.tag.FormTag
 
getActionBean(ActionBeanContext) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Resolves the Class, sublclassing ActionBean, that should be used to handle the request.
getActionBean(String) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Returns the ActionBean class that is bound to the UrlBinding supplied.
getActionBean(ActionBeanContext) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Gets the logical name of the ActionBean that should handle the request.
getActionBean(String) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Returns the ActionBean class that is bound to the UrlBinding supplied.
getActionBean() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Fetches the ActionBean associated with the action if one is present.
getActionBean() - Method in class net.sourceforge.stripes.tag.FormTag
Fetches the ActionBean associated with the form if one is present.
getActionBean() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Fetches the ActionBean associated with the form if one is present.
getActionBeanClasses() - Method in class net.sourceforge.stripes.controller.ActionClassCache
Returns the set of beans in the classpath that implement ActionBean.
getActionBeanContextFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of an action bean context factory which will used throughout Stripes to manufacture ActionBeanContext objects.
getActionBeanContextFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns the configured ActionBeanContextFactory.
getActionBeanInstance(Class<ActionBean>, HttpServletRequest) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Gets an instance of the specified ActionBean.
getActionBeanPropertyBinder() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of ACtionBeanPropertyBinder that is responsible for binding all properties to all ActionBeans at runtime.
getActionBeanPropertyBinder() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Will always return an OgnlActionBeanPropertyBinder
getActionPath() - Method in class net.sourceforge.stripes.validation.SimpleError
Provides subclasses access to the name of the form on which the errored field occurs.
getActionPath() - Method in interface net.sourceforge.stripes.validation.ValidationError
Returns the action path of the form/ActionBean, if one was supplied.
getActionResolver() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of ActionResolver that will be used by Stripes to lookup and resolve ActionBeans.
getActionResolver() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Will always return an instance of AnnotatedClassActionResolver
getAttributes() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Gets the map containing the attributes of the tag.
getBinding() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
Get the UrlBinding of the requested ActionBean
getBodyContent() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Returns the BodyContent of the tag if one has been provided by the JSP container.
getBodyContentAsString() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Checks to see if there is a body content for this tag, and if its value is non-null and non-zero-length.
getBootstrapPropertyResolver() - Method in interface net.sourceforge.stripes.config.Configuration
Implementations should implement this method to simply return a reference to the BootstrapPropertyResolver passed to the Configuration at initialization time.
getBootstrapPropertyResolver() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns a reference to the resolver supplied at initialziation time.
getCharset() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getChecked() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Returns the value originally set using setChecked().
getChecked() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Returns the value set with setChecked().
getCollection() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Returns the value set with setCollection().
getCols() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Gets the HTML attribute of the same name.
getConfiguration() - Static method in class net.sourceforge.stripes.controller.StripesFilter
Returns the Configuration that is being used to process the current request.
getConfiguration() - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Allows subclasses to access the stored configuration if needed.
getContentType() - Method in class net.sourceforge.stripes.action.FileBean
Returns the content type of the file that the user selected and uplaoded.
getContext() - Method in interface net.sourceforge.stripes.action.ActionBean
Implementations must implement this method to return a reference to the context object provided to the ActionBean during the call to setContext(ActionBeanContext).
getContextInstance(HttpServletRequest, HttpServletResponse) - Method in interface net.sourceforge.stripes.controller.ActionBeanContextFactory
Creates and returns a new instance of ActionBeanContext or a subclass.
getContextInstance(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanContextFactory
Returns a new instance of the configured class, or ActionBeanContext if a class is not specified.
getCoords() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getCssClass() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getCurrentError() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Called by the IndividualErrorTag to fetch the current error from the set being iterated.
getDefaultHandler(Class<ActionBean>) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Locates and returns the default handler method that should be invoked when no specific event is named.
getDefaultHandler(Class<ActionBean>) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Returns the Method that is the default handler for events in the ActionBean class supplied.
getDir() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getDisabled() - Method in class net.sourceforge.stripes.tag.InputTagSupport
 
getEnctype() - Method in class net.sourceforge.stripes.tag.FormTag
 
getEnum() - Method in class net.sourceforge.stripes.tag.InputOptionsEnumerationTag
Gets the enum class name set with setEnum().
getErrorMessageBundle(Locale) - Method in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
Looks for a bundle called StripesResources with the supplied locale if one is provided, or with the default locale if the locale provided is null.
getErrorMessageBundle(Locale) - Method in interface net.sourceforge.stripes.localization.LocalizationBundleFactory
Returns the ResourceBundle from which to draw error messages for the specified locale.
getErrorResolution(HttpServletRequest) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Determines the page to send the user to (and how) in case of validation errors.
getEvent() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
The event name, if any to execute.
getEventName() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Supplies the name of the event being handled.
getEventName(Class<ActionBean>, ActionBeanContext) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Determines the name of th event fired by the front end.
getEventName(Class<ActionBean>, ActionBeanContext) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Searched for a parameter in the request whose name matches one of the named events handled by the ActionBean.
getField() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Gets the value set with setField().
getFieldErrors() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Access for the field errors that occured on the form input this tag represents
getFieldName() - Method in class net.sourceforge.stripes.validation.SimpleError
Provides sublcasses access to the field name.
getFieldName() - Method in interface net.sourceforge.stripes.validation.ValidationError
Returns the name of the field in error, if one was supplied.
getFieldValue() - Method in class net.sourceforge.stripes.validation.SimpleError
Provides subclasses with access to the value of the field that is in error.
getFieldValue() - Method in interface net.sourceforge.stripes.validation.ValidationError
Returns the value that is in error, if one was supplied.
getFileName() - Method in class net.sourceforge.stripes.action.FileBean
Returns the name of the file that the user selected and uplaoded (this is not necessarily the name that the underlying file is now stored on the server using).
getFileParameterNames() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Returns the names of request parameters that represent files being uploaded by the user.
getFileParameterValue(String) - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Returns a FileBean representing an uploaded file with the form field name = "name".
getFilterConfig(FilterConfig) - Method in class net.sourceforge.stripes.config.BootstrapPropertyResolver
Returns a reference to the StripesFilter's FilterConfig object.
getFormatPattern() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Returns the value set with setFormatPattern()
getFormatter(Class, Locale, String, String) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Does a simple check to see if the clazz specified is equal to or a subclass of java.util.Date or java.lang.Number, and if so, creates a formatter instance.
getFormatter(Class, Locale, String, String) - Method in interface net.sourceforge.stripes.format.FormatterFactory
Returns a configured formatter that meets the criteria specified.
getFormatterFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of FormatterFactory that is responsible for creating Formatter objects for converting rich types into Strings for display on pages.
getFormatterFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of a FormatterFactory.
getFormatType() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Returns the value set with setFormatAs()
getFormFieldBundle(Locale) - Method in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
Looks for a bundle called StripesResources with the supplied locale if one is provided, or with the default locale if the locale provided is null.
getFormFieldBundle(Locale) - Method in interface net.sourceforge.stripes.localization.LocalizationBundleFactory
Returns the ResourceBundle from which to draw the names of form fields for the specified locale.
getHandler(Class<ActionBean>, String) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Resolves the Method which handles the named event.
getHandler(Class<ActionBean>, String) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Uses the Maps constructed earlier to locate the Method which can handle the event.
getHref() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getHreflang() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getId() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getId() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
Alias for getVar() so that the JSTL and jsp:useBean style are allowed.
getImplementations(Class<T>) - Static method in class net.sourceforge.stripes.util.ResolverUtil
Locates all implementations of an interface, in all packages, in all URLs within the current ClassLoader.
getImplementations(Class<T>, Set<String>, Set<String>) - Static method in class net.sourceforge.stripes.util.ResolverUtil
Locates all implementations of an interface in the classloader being used by this thread.
getInputStream() - Method in class net.sourceforge.stripes.action.FileBean
Gets an input stream to read from the file uploaded
getInstance() - Static method in class net.sourceforge.stripes.controller.ActionClassCache
Gets access to the singleton instance of this class.
getInstance(Class) - Static method in class net.sourceforge.stripes.util.Log
Get a Log instance to perform logging within the Class specified.
getInstance(Class<? extends TypeConverter>, Locale) - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Gets an instance of the TypeConverter class specified.
getInstance(Class<? extends TypeConverter>, Locale) - Method in interface net.sourceforge.stripes.validation.TypeConverterFactory
Gets an instance of the TypeConverter class specified.
getLabel() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Gets the property name set with setLabel().
getLabel() - Method in class net.sourceforge.stripes.tag.InputOptionsEnumerationTag
Gets the name of the property that will be used to generate the option's label.
getLabel() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Returns the value set with setLabel().
getLang() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getLocale() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Gets the Locale that is being used to service the current request.
getLocale() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Provides access to the Locale being used to process the request.
getLocale() - Method in class net.sourceforge.stripes.validation.NumberTypeConverterSupport
Returns the Locale set on the object using setLocale().
getLocalePicker() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of LocalePicker that is responsible for choosing the Locale for each request that enters the system.
getLocalePicker() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of a LocalePicker.
getLocales() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Returns a single element enumeration containing the selected Locale for this request.
getLocalizationBundleFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of LocalizationBundleFactory that is responsible for looking up resource bundles for the varying localization needs ot a web application.
getLocalizationBundleFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of a LocalizationBundleFactory.
getLocalizedFieldName() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Fetches the localized name for this field if one exists in the resource bundle.
getMaximum() - Method in exception net.sourceforge.stripes.controller.FileUploadLimitExceededException
Gets the limit in bytes for HTTP POSTs.
getMaxlength() - Method in class net.sourceforge.stripes.tag.InputTextTag
Gets the HTML attribute of the same name.
getMessage(Locale) - Method in class net.sourceforge.stripes.validation.SimpleError
Gets a String message from the resource bundle for the locale specified.
getMessage(Locale) - Method in interface net.sourceforge.stripes.validation.ValidationError
The error message to display.
getMessageTemplate(Locale) - Method in class net.sourceforge.stripes.validation.LocalizableError
Method responsible for using the information supplied to the error object to find a message template.
getMessageTemplate(Locale) - Method in class net.sourceforge.stripes.validation.ScopedLocalizableError
Overrides getMessageTemplate to perform a scoped search for a message template as defined in the class level javadoc.
getMessageTemplate(Locale) - Method in class net.sourceforge.stripes.validation.SimpleError
Simply returns the message passed in at Construction time.
getMethod() - Method in class net.sourceforge.stripes.tag.FormTag
 
getMultiple() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Gets the HTML attribute "multiple".
getName() - Method in class net.sourceforge.stripes.controller.ParameterName
Always returns the parameter name as passed in to the constructor.
getName() - Method in class net.sourceforge.stripes.tag.FormTag
 
getName() - Method in class net.sourceforge.stripes.tag.InputTagSupport
 
getName() - Method in class net.sourceforge.stripes.tag.LinkParamTag
Gets the name of the parameter(s) that will be added to the URL.
getName() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getNumberFormat() - Method in class net.sourceforge.stripes.validation.NumberTypeConverterSupport
Fetches a NumberFormat that can be used to parse non-decimal numbers.
getNumberFormat() - Method in class net.sourceforge.stripes.validation.PercentageTypeConverter
Returns a percentage instance instead of a regular number format.
getOnblur() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnchange() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnclick() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOndblclick() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnfocus() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnkeydown() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnkeypress() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnkeyup() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmousedown() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmousemove() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmouseout() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmouseover() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmouseup() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnselect() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOverrideValueOrValues() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Gets the value for this tag based on the current population strategy.
getPageContext() - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Retrieves the pageContext handed to the tag by the container.
getParameter(String) - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Retrieves the first value of the specified parameter from the request.
getParameterMap() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Returns a map of parameter name and values.
getParameterNames() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Fetches just the names of regular parameters and does not include file upload parameters.
getParameters(ActionBeanContext) - Method in class net.sourceforge.stripes.controller.OgnlActionBeanPropertyBinder
Converts the map of parameters in the request into a Map of ParameterName to String[].
getParameterValues(String) - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Returns all values sent in the request for a given parameter name.
getParent() - Method in class net.sourceforge.stripes.tag.LinkParamTag
Required spec method to allow others to access the parent of the tag.
getParent() - Method in class net.sourceforge.stripes.tag.StripesTagSupport
From the Tag interface - allows fetching the parent tag on the JSP.
getParentFormTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Locates the enclosing stripes form tag.
getParentTag(Class<T>) - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Locates the enclosing tag of the type supplied.
getPath() - Method in class net.sourceforge.stripes.action.OnwardResolution
Accessor for the path that the user should be sent to.
getPosted() - Method in exception net.sourceforge.stripes.controller.FileUploadLimitExceededException
The size in bytes of the HTTP POST.
getProperty(String) - Method in class net.sourceforge.stripes.config.BootstrapPropertyResolver
Fetches a configuration property in the manner described in the class level javadoc for this class.
getProperty(Map, Object, Object) - Method in class net.sourceforge.stripes.util.OgnlSafeListPropertyAccessor
 
getPropertyClass(String, Object) - Static method in class net.sourceforge.stripes.util.OgnlUtil
Retrieves the class type of the specified property without instantiating the property itself.
getPropertyDescriptors() - Method in class net.sourceforge.stripes.tag.HtmlTagSupportBeanInfo
Generates a simple set of PropertyDescriptors for the HtmlTagSupport class.
getPropertyName(String) - Method in class net.sourceforge.stripes.controller.OgnlActionBeanPropertyBinder
Helper method that returns the name of the property when supplied with the corresponding get or set method.
getReadonly() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Gets the HTML attribute of the same name.
getReadonly() - Method in class net.sourceforge.stripes.tag.InputTextTag
Gets the HTML attribute of the same name.
getRealType(ActionBean, Class, ParameterName) - Method in class net.sourceforge.stripes.controller.OgnlActionBeanPropertyBinder
Figures out what is the real type that TypeConversions should target for this property.
getRegisteredFields() - Method in class net.sourceforge.stripes.tag.FormTag
Gets the set of all field names for which fields have been refered withing the form up until the point of calling this method.
getRel() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getRequest() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Retreives the HttpServletRequest object that is associated with the current request.
getResponse() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Retrieves the HttpServletResponse that is associated with the current request.
getRev() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getRows() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Gets the HTML attribute of the same name.
getSelected() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Returns the value set with setSelected().
getSelectedValueOrValues() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Returns the scalar value or Array or Collection of values that are to be selected in the select tag.
getShape() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getSingleOverrideValue() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Returns a single value for the the value of this field.
getSize() - Method in class net.sourceforge.stripes.action.FileBean
Gets the size of the file that was uploaded.
getSize() - Method in class net.sourceforge.stripes.tag.InputTagSupport
 
getSourcePageResolution() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Returns a resolution that can be used to return the user to the page from which they submitted they current request.
getStrippedName() - Method in class net.sourceforge.stripes.controller.ParameterName
Returns the name with all indexing and mapping components stripped.
getStyle() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getTabindex() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getTagErrorRenderer(InputTagSupport) - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRendererFactory
Always returns an initialized instance of DefaultTagErrorRenderer.
getTagErrorRenderer(InputTagSupport) - Method in interface net.sourceforge.stripes.tag.TagErrorRendererFactory
Returns a new instance of a TagErrorRenderer that is utilized by the supplied tag.
getTagErrorRendererFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of a tag error renderer factory for building custom error renderers for form input tags that have field errors.
getTagErrorRendererFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of a TagErrorRendererFactory.
getTarget() - Method in class net.sourceforge.stripes.tag.FormTag
 
getTarget() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getTempDirectoryPath() - Method in class net.sourceforge.stripes.controller.StripesFilter
Returns the path to the temporary directory that is used to store file uploads.
getTitle() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getType() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getTypeConverter(Class, Locale) - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Gets the applicable type converter for the class passed in.
getTypeConverter(Class, Locale) - Method in interface net.sourceforge.stripes.validation.TypeConverterFactory
Gets the applicable type converter for the class passed in.
getTypeConverterFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of TypeConverterFactory that is responsible for providing lookups and instances of TypeConverters for the validation system.
getTypeConverterFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Will always return an instance of DefaultTypeConverterFactory.
getValidationErrors() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Returns the set of validation errors associated with the current form.
getValidationMessages() - Method in class net.sourceforge.stripes.tag.TagLibraryValidator.JSPSaxHandler
Fetches the validation messages that were made when the page was parsed.
getValue(InputTagSupport) - Method in class net.sourceforge.stripes.tag.DefaultPopulationStrategy
Implementation of the interface method that will follow the search described in the class level JavaDoc and attempt to find a value for this tag.
getValue() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Returns the value set with setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Returns the value that this checkbox will submit if it is checked.
getValue() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Returns the value set with setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Returns the property name set with setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Returns the value of the opion as set with setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Returns the value set with setValue()
getValue() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Returns the String value set by the tag attribute on the JSP, or the override value set in the HttpRequest, or the override value bound to the ActionBean object in scope.
getValue() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Returns the value set using setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputTextTag
Returns the value set using setValue().
getValue() - Method in class net.sourceforge.stripes.tag.LinkParamTag
Gets the value attribute, as set with setValue().
getValue(InputTagSupport) - Method in interface net.sourceforge.stripes.tag.PopulationStrategy
 
getValue(String, Object) - Static method in class net.sourceforge.stripes.util.OgnlUtil
Fetches the value of a named property (nested, indexed etc.) using Ognl.
getValue(String, Object, boolean) - Static method in class net.sourceforge.stripes.util.OgnlUtil
Fetches the value of a named property (nested, indexed etc.) using Ognl.
getVar() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
Gets the name of the page scope variable to which the ActionBean will be bound.
getVariableInfo(TagData) - Method in class net.sourceforge.stripes.tag.ErrorsTagExtraInfo
Returns an array of length two, for the variables exposed.
GLOBAL_ERROR - Static variable in class net.sourceforge.stripes.validation.ValidationErrors
Key that is used to store global (i.e.

H

HandlesEvent - Annotation Type in net.sourceforge.stripes.action
Annotation used by ActionBean to declare that a method is capable of handling a named event being submitted by a client.
handleValidationErrors(ValidationErrors) - Method in interface net.sourceforge.stripes.validation.ValidationErrorHandler
Allows the ActionBean to influence what happens when validaiton errors occur during validation and binding.
hashCode() - Method in class net.sourceforge.stripes.validation.LocalizableError
Generated hashCode method.
hashCode() - Method in class net.sourceforge.stripes.validation.ScopedLocalizableError
Generated hashCode() method.
hashCode() - Method in class net.sourceforge.stripes.validation.SimpleError
Generated hashCode() method.
HtmlTagSupport - Class in net.sourceforge.stripes.tag
Provides basic facilities for any tag that wishes to mimic a standard HTML/XHTML tag.
HtmlTagSupport() - Constructor for class net.sourceforge.stripes.tag.HtmlTagSupport
 
HtmlTagSupportBeanInfo - Class in net.sourceforge.stripes.tag
Descirbes the properties supported by the HtmlTagSupport class which is the parent of all the HTML Form/Input tags in Stripes.
HtmlTagSupportBeanInfo() - Constructor for class net.sourceforge.stripes.tag.HtmlTagSupportBeanInfo
 
HtmlUtil - Class in net.sourceforge.stripes.util
Provides simple utility methods for dealing with HTML.
HtmlUtil() - Constructor for class net.sourceforge.stripes.util.HtmlUtil
 

I

IndividualErrorTag - Class in net.sourceforge.stripes.tag
The individual-error tag works in concert with a parent errors tag to control the output of each iteration of an error.
IndividualErrorTag() - Constructor for class net.sourceforge.stripes.tag.IndividualErrorTag
 
info(Throwable, Object...) - Method in class net.sourceforge.stripes.util.Log
Logs a Throwable and optional message parts at level info.
info(Object...) - Method in class net.sourceforge.stripes.util.Log
Logs one or more message parts at level info.
init(Configuration) - Method in interface net.sourceforge.stripes.config.ConfigurableComponent
Invoked directly after instantiation to allow the configured component to perform one time initialization.
init() - Method in interface net.sourceforge.stripes.config.Configuration
Called by the DispatcherServlet to initialize the Configuration.
init() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Creates and stores instances of the objects of the type that the Configuration is responsible for providing, except where subclasses have already provided instances.
init() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Attempts to find names of implementation classes using the BootstrapPropertyResolver and instantiates any configured classes found.
init(Set<String>, Set<String>) - Static method in class net.sourceforge.stripes.controller.ActionClassCache
Protected initializer that initializes the cached set of bean Class objects.
init(Configuration) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Scans the classpath of the current classloader (not including parents) to find implementations of the ActionBean interface.
init(Configuration) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanContextFactory
Stores the configuration, and looks up the ActionBeanContext class specified.
init(Configuration) - Method in class net.sourceforge.stripes.controller.OgnlActionBeanPropertyBinder
Looks up and caches in a useful form the metadata necessary to perform validations as properties are bound to the bean.
init(FilterConfig) - Method in class net.sourceforge.stripes.controller.StripesFilter
Performs the necessary initialization for the StripesFilter.
init() - Method in class net.sourceforge.stripes.format.DateFormatter
Constructs the DateFormat used for formatting, based on the values passed to the various setter methods on the class.
init(Configuration) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Stores a reference to the configuration and returns.
init() - Method in interface net.sourceforge.stripes.format.Formatter
Called once all setters have been invoked, to allow Formatter to prepare itself.
init() - Method in class net.sourceforge.stripes.format.NumberFormatter
Instantiates the NumberFormat based on the information provided through setter methods.
init(Configuration) - Method in class net.sourceforge.stripes.localization.DefaultLocalePicker
Attempts to read the
init(Configuration) - Method in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
Uses the BootstrapPropertyResolver attached to the Configuration in order to look for configured bundle names in the servlet init parameters etc.
init(InputTagSupport) - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRenderer
Simply stores the tag passed in.
init(Configuration) - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRendererFactory
Just stores the configuration passed in.
init(InputTagSupport) - Method in interface net.sourceforge.stripes.tag.TagErrorRenderer
Initialize this renderer for a specific tag instance
init(Configuration) - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Places all the known convertible types and type converters into an instance level Map.
InputButtonSupportTag - Class in net.sourceforge.stripes.tag
Support tag class that can generate HTML form fields with localized value attributes.
InputButtonSupportTag() - Constructor for class net.sourceforge.stripes.tag.InputButtonSupportTag
 
InputButtonTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal InputButtonTag() - Constructor for class net.sourceforge.stripes.tag.InputButtonTag
Sets the input tag type to be button.
InputCheckBoxTag - Class in net.sourceforge.stripes.tag
Implements an HTML tag that generates form fields of type <input type="checkbox"/>.
InputCheckBoxTag() - Constructor for class net.sourceforge.stripes.tag.InputCheckBoxTag
Basic constructor that sets the input tag's type attribute to "checkbox".
InputFileTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal InputFileTag() - Constructor for class net.sourceforge.stripes.tag.InputFileTag
Basic constructor that sets the input tag's type attribute to "file".
InputHiddenTag - Class in net.sourceforge.stripes.tag
Generates one or more {@literal InputHiddenTag() - Constructor for class net.sourceforge.stripes.tag.InputHiddenTag
Basic constructor that sets the input tag's type attribute to "hidden".
InputOptionsCollectionTag - Class in net.sourceforge.stripes.tag
Writes a set of <option value="foo">bar</option> tags to the page based on the contents of a Collection.
InputOptionsCollectionTag() - Constructor for class net.sourceforge.stripes.tag.InputOptionsCollectionTag
 
InputOptionsEnumerationTag - Class in net.sourceforge.stripes.tag
Writes a set of <option value="foo">bar</option> tags to the page based on the values of a enum.
InputOptionsEnumerationTag() - Constructor for class net.sourceforge.stripes.tag.InputOptionsEnumerationTag
 
InputOptionTag - Class in net.sourceforge.stripes.tag
Generates an <option value="foo">Fooey</option> HTML tag.
InputOptionTag() - Constructor for class net.sourceforge.stripes.tag.InputOptionTag
 
InputRadioButtonTag - Class in net.sourceforge.stripes.tag
Generates <input type="radio" value="foo"/> HTML tags based on the attribute set on the tag and the state of the form.
InputRadioButtonTag() - Constructor for class net.sourceforge.stripes.tag.InputRadioButtonTag
Basic constructor that sets the input tag's type attribute to "radio".
InputResetTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal InputResetTag() - Constructor for class net.sourceforge.stripes.tag.InputResetTag
Sets the input tag type to be reset.
InputSelectTag - Class in net.sourceforge.stripes.tag
Coordinates with one or more other tags to produce a well formed HTML select tag with state repopulation.
InputSelectTag() - Constructor for class net.sourceforge.stripes.tag.InputSelectTag
 
InputSubmitTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal InputSubmitTag() - Constructor for class net.sourceforge.stripes.tag.InputSubmitTag
Sets the input tag type to be submit.
InputTagSupport - Class in net.sourceforge.stripes.tag
Parent class for all input tags in stripes.
InputTagSupport() - Constructor for class net.sourceforge.stripes.tag.InputTagSupport
 
InputTextAreaTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal