Uses of Class
com.opensymphony.xwork.util.OgnlValueStack

Packages that use OgnlValueStack
com.opensymphony.xwork   
com.opensymphony.xwork.interceptor   
com.opensymphony.xwork.mock   
com.opensymphony.xwork.util   
com.opensymphony.xwork.validator   
 

Uses of OgnlValueStack in com.opensymphony.xwork
 

Fields in com.opensymphony.xwork declared as OgnlValueStack
protected  OgnlValueStack DefaultActionInvocation.stack
           
 

Methods in com.opensymphony.xwork that return OgnlValueStack
 OgnlValueStack ActionContext.getValueStack()
          Gets the OGNL value stack.
 OgnlValueStack ActionInvocation.getStack()
           
 OgnlValueStack DefaultActionInvocation.getStack()
           
 

Methods in com.opensymphony.xwork with parameters of type OgnlValueStack
 String ActionSupport.getText(String key, String defaultValue, List args, OgnlValueStack stack)
           
 String ActionSupport.getText(String key, String defaultValue, String[] args, OgnlValueStack stack)
           
 String TextProvider.getText(String key, String defaultValue, List args, OgnlValueStack 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 TextProvider.getText(String key, String defaultValue, String[] args, OgnlValueStack 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 DefaultTextProvider.getText(String key, String defaultValue, List args, OgnlValueStack stack)
           
 String DefaultTextProvider.getText(String key, String defaultValue, String[] args, OgnlValueStack stack)
           
 void ActionContext.setValueStack(OgnlValueStack stack)
          Sets the OGNL value stack.
 String TextProviderSupport.getText(String key, String defaultValue, List args, OgnlValueStack 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, OgnlValueStack 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.
 

Uses of OgnlValueStack in com.opensymphony.xwork.interceptor
 

Methods in com.opensymphony.xwork.interceptor with parameters of type OgnlValueStack
protected  void ParametersInterceptor.setParameters(Object action, OgnlValueStack stack, Map parameters)
           
 

Uses of OgnlValueStack in com.opensymphony.xwork.mock
 

Methods in com.opensymphony.xwork.mock that return OgnlValueStack
 OgnlValueStack MockActionInvocation.getStack()
           
 

Methods in com.opensymphony.xwork.mock with parameters of type OgnlValueStack
 void MockActionInvocation.setStack(OgnlValueStack stack)
           
 

Uses of OgnlValueStack in com.opensymphony.xwork.util
 

Methods in com.opensymphony.xwork.util with parameters of type OgnlValueStack
static String LocalizedTextUtil.findText(Class aClass, String aTextName, Locale locale, String defaultMessage, Object[] args, OgnlValueStack 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, OgnlValueStack valueStack)
          Finds a localized text message for the given key, aTextName, in the specified resource bundle.
static String TextParseUtil.translateVariables(String expression, OgnlValueStack 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, OgnlValueStack stack, TextParseUtil.ParsedValueEvaluator evaluator)
          Function similarly as TextParseUtil.translateVariables(char, String, OgnlValueStack) except for the introduction of an additional evaluator that allows the parsed value to be evaluated by the evaluator.
static String TextParseUtil.translateVariables(char open, String expression, OgnlValueStack 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, OgnlValueStack stack, Class asType)
          Converted object from variable translation.
static Object TextParseUtil.translateVariables(char open, String expression, OgnlValueStack stack, Class asType, TextParseUtil.ParsedValueEvaluator evaluator)
          Converted object from variable translation.
static String XWorkConverter.getConversionErrorMessage(String propertyName, OgnlValueStack stack)
           
 

Constructors in com.opensymphony.xwork.util with parameters of type OgnlValueStack
OgnlValueStack(OgnlValueStack vs)
           
 

Uses of OgnlValueStack in com.opensymphony.xwork.validator
 

Methods in com.opensymphony.xwork.validator with parameters of type OgnlValueStack
 String DelegatingValidatorContext.getText(String key, String defaultValue, List args, OgnlValueStack stack)
           
 String DelegatingValidatorContext.getText(String key, String defaultValue, String[] args, OgnlValueStack stack)
           
 


XWork Project Page