|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ValueStack in com.opensymphony.xwork2 |
---|
Fields in com.opensymphony.xwork2 declared as ValueStack | |
---|---|
protected ValueStack |
DefaultActionInvocation.stack
|
Methods in com.opensymphony.xwork2 that return ValueStack | |
---|---|
ValueStack |
ActionInvocation.getStack()
Gets the ValueStack associated with this ActionInvocation. |
ValueStack |
DefaultActionInvocation.getStack()
|
ValueStack |
ActionContext.getValueStack()
Gets the OGNL value stack. |
Methods in com.opensymphony.xwork2 with parameters of type ValueStack | |
---|---|
String |
ActionSupport.getText(String key,
String defaultValue,
List args,
ValueStack stack)
|
String |
DefaultTextProvider.getText(String key,
String defaultValue,
List args,
ValueStack stack)
|
String |
TextProvider.getText(String key,
String defaultValue,
List args,
ValueStack stack)
Gets a message based on a key using the supplied args, as defined in MessageFormat , or, if the message is not found, a supplied
default value is returned. |
String |
TextProviderSupport.getText(String key,
String defaultValue,
List args,
ValueStack stack)
Gets a message based on a key using the supplied args, as defined in MessageFormat , or, if the message is not found, a supplied
default value is returned. |
String |
ActionSupport.getText(String key,
String defaultValue,
String[] args,
ValueStack stack)
|
String |
DefaultTextProvider.getText(String key,
String defaultValue,
String[] args,
ValueStack stack)
|
String |
TextProvider.getText(String key,
String defaultValue,
String[] args,
ValueStack stack)
Gets a message based on a key using the supplied args, as defined in MessageFormat , or, if the message is not found, a supplied
default value is returned. |
String |
TextProviderSupport.getText(String key,
String defaultValue,
String[] args,
ValueStack stack)
Gets a message based on a key using the supplied args, as defined in MessageFormat , or, if the message is not found, a supplied
default value is returned. |
String |
ActionEventListener.handleException(Throwable t,
ValueStack stack)
Called when an exception is thrown by the action |
Object |
ActionEventListener.prepare(Object action,
ValueStack stack)
Called after an action has been created. |
void |
ActionContext.setValueStack(ValueStack stack)
Sets the OGNL value stack. |
Uses of ValueStack in com.opensymphony.xwork2.conversion.impl |
---|
Methods in com.opensymphony.xwork2.conversion.impl with parameters of type ValueStack | |
---|---|
static String |
XWorkConverter.getConversionErrorMessage(String propertyName,
ValueStack stack)
|
Uses of ValueStack in com.opensymphony.xwork2.interceptor |
---|
Methods in com.opensymphony.xwork2.interceptor with parameters of type ValueStack | |
---|---|
protected void |
ParametersInterceptor.setParameters(Object action,
ValueStack stack,
Map parameters)
|
Uses of ValueStack in com.opensymphony.xwork2.mock |
---|
Fields in com.opensymphony.xwork2.mock declared as ValueStack | |
---|---|
private ValueStack |
MockActionInvocation.stack
|
Methods in com.opensymphony.xwork2.mock that return ValueStack | |
---|---|
ValueStack |
MockActionInvocation.getStack()
|
Methods in com.opensymphony.xwork2.mock with parameters of type ValueStack | |
---|---|
void |
MockActionInvocation.setStack(ValueStack stack)
|
Uses of ValueStack in com.opensymphony.xwork2.ognl |
---|
Classes in com.opensymphony.xwork2.ognl that implement ValueStack | |
---|---|
class |
OgnlValueStack
Ognl implementation of a value stack that allows for dynamic Ognl expressions to be evaluated against it. |
Methods in com.opensymphony.xwork2.ognl that return ValueStack | |
---|---|
ValueStack |
OgnlValueStackFactory.createValueStack()
|
ValueStack |
OgnlValueStackFactory.createValueStack(ValueStack stack)
|
Methods in com.opensymphony.xwork2.ognl with parameters of type ValueStack | |
---|---|
ValueStack |
OgnlValueStackFactory.createValueStack(ValueStack stack)
|
Constructors in com.opensymphony.xwork2.ognl with parameters of type ValueStack | |
---|---|
OgnlValueStack(ValueStack vs,
XWorkConverter xworkConverter,
CompoundRootAccessor accessor,
boolean allowStaticAccess)
|
Uses of ValueStack in com.opensymphony.xwork2.util |
---|
Methods in com.opensymphony.xwork2.util that return ValueStack | |
---|---|
ValueStack |
ValueStackFactory.createValueStack()
Get a new instance of ValueStack |
ValueStack |
ValueStackFactory.createValueStack(ValueStack stack)
Get a new instance of ValueStack |
Methods in com.opensymphony.xwork2.util with parameters of type ValueStack | |
---|---|
ValueStack |
ValueStackFactory.createValueStack(ValueStack stack)
Get a new instance of ValueStack |
private static String |
LocalizedTextUtil.findMessage(Class clazz,
String key,
String indexedKey,
Locale locale,
Object[] args,
Set checked,
ValueStack valueStack)
Traverse up class hierarchy looking for message. |
static String |
LocalizedTextUtil.findText(Class aClass,
String aTextName,
Locale locale,
String defaultMessage,
Object[] args,
ValueStack valueStack)
Finds a localized text message for the given key, aTextName. |
static String |
LocalizedTextUtil.findText(ResourceBundle bundle,
String aTextName,
Locale locale,
String defaultMessage,
Object[] args,
ValueStack valueStack)
Finds a localized text message for the given key, aTextName, in the specified resource bundle. |
private static LocalizedTextUtil.GetDefaultMessageReturnArg |
LocalizedTextUtil.getDefaultMessage(String key,
Locale locale,
ValueStack valueStack,
Object[] args,
String defaultMessage)
Gets the default message. |
private static String |
LocalizedTextUtil.getMessage(String bundleName,
Locale locale,
String key,
ValueStack valueStack,
Object[] args)
Gets the message from the named resource bundle. |
static String |
TextParseUtil.translateVariables(char open,
String expression,
ValueStack stack)
Converts all instances of ${...} in expression to the value returned
by a call to findValue(java.lang.String) . |
static Object |
TextParseUtil.translateVariables(char open,
String expression,
ValueStack stack,
Class asType)
Converted object from variable translation. |
static Object |
TextParseUtil.translateVariables(char open,
String expression,
ValueStack stack,
Class asType,
TextParseUtil.ParsedValueEvaluator evaluator)
Converted object from variable translation. |
static Object |
TextParseUtil.translateVariables(char open,
String expression,
ValueStack stack,
Class asType,
TextParseUtil.ParsedValueEvaluator evaluator,
int maxLoopCount)
Converted object from variable translation. |
static String |
TextParseUtil.translateVariables(String expression,
ValueStack stack)
Converts all instances of ${...} in expression to the value returned
by a call to findValue(java.lang.String) . |
static String |
TextParseUtil.translateVariables(String expression,
ValueStack stack,
TextParseUtil.ParsedValueEvaluator evaluator)
Function similarly as TextParseUtil.translateVariables(char, String, ValueStack)
except for the introduction of an additional evaluator that allows
the parsed value to be evaluated by the evaluator . |
Uses of ValueStack in com.opensymphony.xwork2.validator |
---|
Methods in com.opensymphony.xwork2.validator with parameters of type ValueStack | |
---|---|
String |
DelegatingValidatorContext.getText(String key,
String defaultValue,
List args,
ValueStack stack)
|
String |
DelegatingValidatorContext.getText(String key,
String defaultValue,
String[] args,
ValueStack stack)
|
void |
Validator.setValueStack(ValueStack stack)
Sets the value stack to use to resolve values and parameters |
Uses of ValueStack in com.opensymphony.xwork2.validator.validators |
---|
Fields in com.opensymphony.xwork2.validator.validators declared as ValueStack | |
---|---|
private ValueStack |
ValidatorSupport.stack
|
Methods in com.opensymphony.xwork2.validator.validators with parameters of type ValueStack | |
---|---|
void |
ValidatorSupport.setValueStack(ValueStack stack)
|
Uses of ValueStack in org.apache.struts2 |
---|
Methods in org.apache.struts2 that return ValueStack | |
---|---|
static ValueStack |
ServletActionContext.getValueStack(HttpServletRequest req)
Gets the current value stack for this request |
Uses of ValueStack in org.apache.struts2.components |
---|
Fields in org.apache.struts2.components declared as ValueStack | |
---|---|
protected ValueStack |
Component.stack
|
Methods in org.apache.struts2.components that return ValueStack | |
---|---|
ValueStack |
Component.getStack()
Gets the OGNL value stack assoicated with this component. |
Methods in org.apache.struts2.components with parameters of type ValueStack | |
---|---|
protected String |
Component.determineNamespace(String namespace,
ValueStack stack,
HttpServletRequest req)
Determines the namespace of the current page being renderdd. |
Uses of ValueStack in org.apache.struts2.components.template |
---|
Fields in org.apache.struts2.components.template declared as ValueStack | |
---|---|
(package private) ValueStack |
TemplateRenderingContext.stack
|
Methods in org.apache.struts2.components.template that return ValueStack | |
---|---|
ValueStack |
TemplateRenderingContext.getStack()
|
Constructors in org.apache.struts2.components.template with parameters of type ValueStack | |
---|---|
TemplateRenderingContext(Template template,
Writer writer,
ValueStack stack,
Map params,
UIBean tag)
Constructor |
Uses of ValueStack in org.apache.struts2.dispatcher |
---|
Methods in org.apache.struts2.dispatcher with parameters of type ValueStack | |
---|---|
protected org.apache.velocity.context.Context |
VelocityResult.createContext(VelocityManager velocityManager,
ValueStack stack,
HttpServletRequest request,
HttpServletResponse response,
String location)
Creates the VelocityContext that we'll use to render this page. |
protected org.apache.velocity.Template |
VelocityResult.getTemplate(ValueStack stack,
org.apache.velocity.app.VelocityEngine velocity,
ActionInvocation invocation,
String location,
String encoding)
Given a value stack, a Velocity engine, and an action invocation, this method returns the appropriate Velocity template to render. |
protected void |
StreamResult.resolveParamsFromStack(ValueStack stack)
Tries to lookup the parameters on the stack. |
Uses of ValueStack in org.apache.struts2.interceptor |
---|
Methods in org.apache.struts2.interceptor with parameters of type ValueStack | |
---|---|
protected void |
CookieInterceptor.populateCookieValueIntoStack(String cookieName,
String cookieValue,
Map cookiesMap,
ValueStack stack)
Hook that populate cookie value into value stack (hence the action) if the criteria is satisfied (if the cookie value matches with those configured). |
Uses of ValueStack in org.apache.struts2.util |
---|
Fields in org.apache.struts2.util declared as ValueStack | |
---|---|
protected ValueStack |
StrutsUtil.stack
|
Methods in org.apache.struts2.util with parameters of type ValueStack | |
---|---|
static String |
TextProviderHelper.getText(String key,
String defaultMessage,
List<String> args,
ValueStack stack)
Get a message from the first TextProvider encountered in the stack. |
static String |
TextProviderHelper.getText(String key,
String defaultMessage,
ValueStack stack)
Get a message from the first TextProvider encountered in the stack. |
Constructors in org.apache.struts2.util with parameters of type ValueStack | |
---|---|
StrutsUtil(ValueStack stack,
HttpServletRequest request,
HttpServletResponse response)
|
|
VelocityStrutsUtil(org.apache.velocity.app.VelocityEngine engine,
org.apache.velocity.context.Context ctx,
ValueStack stack,
HttpServletRequest request,
HttpServletResponse response)
|
Uses of ValueStack in org.apache.struts2.views |
---|
Methods in org.apache.struts2.views with parameters of type ValueStack | |
---|---|
Object |
DefaultTagLibrary.getFreemarkerModels(ValueStack stack,
HttpServletRequest req,
HttpServletResponse res)
|
Object |
TagLibrary.getFreemarkerModels(ValueStack stack,
HttpServletRequest req,
HttpServletResponse res)
Gets a Java object that contains getters for the tag library's Freemarker models. |
Uses of ValueStack in org.apache.struts2.views.freemarker |
---|
Fields in org.apache.struts2.views.freemarker declared as ValueStack | |
---|---|
private ValueStack |
ScopesHashModel.stack
|
Methods in org.apache.struts2.views.freemarker with parameters of type ValueStack | |
---|---|
protected ScopesHashModel |
FreemarkerManager.buildScopesHashModel(ServletContext servletContext,
HttpServletRequest request,
HttpServletResponse response,
freemarker.template.ObjectWrapper wrapper,
ValueStack stack)
|
freemarker.template.SimpleHash |
FreemarkerManager.buildTemplateModel(ValueStack stack,
Object action,
ServletContext servletContext,
HttpServletRequest request,
HttpServletResponse response,
freemarker.template.ObjectWrapper wrapper)
|
protected void |
FreemarkerManager.populateContext(ScopesHashModel model,
ValueStack stack,
Object action,
HttpServletRequest request,
HttpServletResponse response)
|
Constructors in org.apache.struts2.views.freemarker with parameters of type ValueStack | |
---|---|
ScopesHashModel(freemarker.template.ObjectWrapper objectWrapper,
ServletContext context,
HttpServletRequest request,
ValueStack stack)
|
Uses of ValueStack in org.apache.struts2.views.freemarker.tags |
---|
Fields in org.apache.struts2.views.freemarker.tags declared as ValueStack | |
---|---|
protected ValueStack |
TagModel.stack
|
protected ValueStack |
StrutsModels.stack
|
Uses of ValueStack in org.apache.struts2.views.jsp |
---|
Methods in org.apache.struts2.views.jsp that return ValueStack | |
---|---|
protected ValueStack |
StrutsBodyTagSupport.getStack()
|
static ValueStack |
TagUtils.getStack(PageContext pageContext)
|
Uses of ValueStack in org.apache.struts2.views.jsp.iterator |
---|
Methods in org.apache.struts2.views.jsp.iterator with parameters of type ValueStack | |
---|---|
Component |
AppendIteratorTag.getBean(ValueStack stack,
HttpServletRequest req,
HttpServletResponse res)
|
Component |
MergeIteratorTag.getBean(ValueStack stack,
HttpServletRequest req,
HttpServletResponse res)
|
Uses of ValueStack in org.apache.struts2.views.jsp.ui |
---|
Uses of ValueStack in org.apache.struts2.views.util |
---|
Methods in org.apache.struts2.views.util with parameters of type ValueStack | |
---|---|
static Map |
ContextUtil.getStandardContext(ValueStack stack,
HttpServletRequest req,
HttpServletResponse res)
|
Uses of ValueStack in org.apache.struts2.views.velocity |
---|
Fields in org.apache.struts2.views.velocity declared as ValueStack | |
---|---|
(package private) ValueStack |
StrutsVelocityContext.stack
|
Methods in org.apache.struts2.views.velocity with parameters of type ValueStack | |
---|---|
org.apache.velocity.context.Context |
VelocityManager.createContext(ValueStack stack,
HttpServletRequest req,
HttpServletResponse res)
This method is responsible for creating the standard VelocityContext used by all WW2 velocity views. |
Constructors in org.apache.struts2.views.velocity with parameters of type ValueStack | |
---|---|
StrutsVelocityContext(ValueStack stack)
|
|
StrutsVelocityContext(org.apache.velocity.VelocityContext[] chainedContexts,
ValueStack stack)
|
Uses of ValueStack in org.apache.struts2.views.velocity.components |
---|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |