Package | Description |
---|---|
net.sourceforge.stripes.config |
This package provides Configuration services for Stripes, including interfaces for
locating configured components and configuration parameters.
|
net.sourceforge.stripes.tag |
Contains implementation classes for all the Stripes custom tags and interfaces
for overriding the strategy used to (re-)populate tag values and rendering tags
in case of validation errors.
|
Modifier and Type | Method and Description |
---|---|
PopulationStrategy |
Configuration.getPopulationStrategy()
Returns an instance of a PopulationStrategy that determines from where a tag's value
should be repopulated.
|
PopulationStrategy |
DefaultConfiguration.getPopulationStrategy()
Returns an instance of a PopulationsStrategy.
|
protected PopulationStrategy |
DefaultConfiguration.initPopulationStrategy()
Allows subclasses to initialize a non-default PopulationStrategy instance to be used.
|
protected PopulationStrategy |
RuntimeConfiguration.initPopulationStrategy()
Looks for a class name in config and uses that to create the component.
|
Modifier and Type | Class and Description |
---|---|
class |
BeanFirstPopulationStrategy
An alternative tag population strategy that will normally prefer the value from the ActionBean
over values from the request - even when the ActionBean returns null! Only if the ActionBean
is not present, or does not define an attribute with the name supplied to the tag will other
population sources be examined.
|
class |
DefaultPopulationStrategy
Default implementation of the form input tag population strategy.
|
? Copyright 2005-2006, Stripes Development Team.