Hello,
It occurs to me that if the contents ValueStack could be accessed via
api's similar to a Map or List, then the VS could be accessed directly
from JSTL (or Velocity for that matter) provided it could be added as a
friendly name to the request. For instance:
${valuestack.current} - calls vs.getCurrent() which calls
findValue(".")
${valuestack.parent} - calls vs.getParent() which calls
findValue("..")
${valuestack.top} - calls vs.getTop() which calls findValue("/")?
-Bill
|