Uses of Interface
com.opensymphony.module.sitemesh.Page

Packages that use Page
com.opensymphony.module.sitemesh   
com.opensymphony.module.sitemesh.filter   
com.opensymphony.module.sitemesh.mapper   
com.opensymphony.module.sitemesh.parser   
com.opensymphony.module.sitemesh.taglib   
 

Uses of Page in com.opensymphony.module.sitemesh
 

Subinterfaces of Page in com.opensymphony.module.sitemesh
 interface HTMLPage
          Extension of Page providing access to HTML data.
 

Methods in com.opensymphony.module.sitemesh that return Page
 Page PageParser.parse(char[] data)
          This builds a Page.
 

Methods in com.opensymphony.module.sitemesh with parameters of type Page
 Decorator DecoratorMapper.getDecorator(HttpServletRequest request, Page page)
          Return appropriate Decorator for a certain Page.
 

Uses of Page in com.opensymphony.module.sitemesh.filter
 

Fields in com.opensymphony.module.sitemesh.filter declared as Page
private  Page PageResponseWrapper.page
           
 

Methods in com.opensymphony.module.sitemesh.filter that return Page
 Page PageResponseWrapper.getPage()
          Send data written to PageWriter to PageParser and return a Page instance.
protected  Page PageFilter.parsePage(HttpServletRequest request, HttpServletResponse response, FilterChain chain)
          Continue in filter-chain, writing all content to buffer and parsing into returned Page object.
 

Methods in com.opensymphony.module.sitemesh.filter with parameters of type Page
protected  void PageFilter.applyDecorator(Page page, Decorator decorator, HttpServletRequest request, HttpServletResponse response)
          Apply Decorator to Page and write to the response.
private  void PageFilter.writeOriginal(HttpServletRequest request, HttpServletResponse response, Page page)
          Write the original page data to the response.
 

Uses of Page in com.opensymphony.module.sitemesh.mapper
 

Methods in com.opensymphony.module.sitemesh.mapper with parameters of type Page
private  Decorator PageDecoratorMapper.getByProperty(HttpServletRequest request, Page p, String name)
           
 Decorator OSDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
          Attempts to find the correct decorator for Page page based on the UA-OS HTTP header in the request.
 Decorator AgentDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
           
 Decorator InlineDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
           
 Decorator ConfigDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
          Retrieve Decorator based on 'pattern' tag.
 Decorator ParameterDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
           
 Decorator NullDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
          Returns null.
 Decorator PageDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
           
 Decorator AbstractDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
          Delegate to parent.
 Decorator PrintableDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
           
 Decorator CookieDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
           
 Decorator FrameSetDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
           
 Decorator LanguageDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
           
 Decorator RobotDecoratorMapper.getDecorator(HttpServletRequest request, Page page)
           
 

Uses of Page in com.opensymphony.module.sitemesh.parser
 

Classes in com.opensymphony.module.sitemesh.parser that implement Page
 class AbstractHTMLPage
          Abstract implementation of HTMLPage.
 class AbstractPage
          Abstract implementation of Page .
 class FastPage
          HTMLPage implementation produced by FastPageParser.
 class UnParsedPage
          A page that is of unrecognised content-type, or cannot be parsed into a specific type of Page.
 

Methods in com.opensymphony.module.sitemesh.parser that return Page
 Page FastPageParser.parse(char[] data)
           
 Page DefaultPageParser.parse(char[] data)
           
 Page FastPageParser.parse(Reader reader)
           
 

Uses of Page in com.opensymphony.module.sitemesh.taglib
 

Methods in com.opensymphony.module.sitemesh.taglib that return Page
protected  Page AbstractTag.getPage()
          Return the Page object from the PAGE scope.
 


www.opensymphony.com/sitemesh/