159160161162163164165166167
private PortletContext _getPortletContext() { if(_context == null) { _context = new PortletContextWrapper((PortletContext)_ec.getContext()); } return _context; }
669670671672673674675676677678679
{ if(_context == null) { if(request instanceof PortletRequestWrapper) { _context = new PortletContextWrapper((PortletContext)getExternalContext().getContext()); } } super.setRequest(request); }
683684685686687688689690691692693
{ if(_context == null) { if(response instanceof PortletResponseWrapper) { _context = new PortletContextWrapper((PortletContext)getExternalContext().getContext()); } } super.setResponse(response); }
158159160161162163164165166