Nico Klasens wrote:
    public PageContext(ServletRequest request, ServletResponse response) {
        setRequest((HttpServletRequest)request);
        setResponse((HttpServletResponse)response);
    }

This is for the implementation of the Module and NodeManager mnethods that call need this object.
The methods in these classes use ServletRequest and ServletResponse as parameter types in their method calls, though all invocation I know pass HttpServletRequest and HttpServletResponse.
The casting should probably occur in the bridge rather than in the constructor.


Gomez





Reply via email to