Uses of Interface
com.sitemesh.Page

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

Uses of Page in com.sitemesh
 

Subinterfaces of Page in com.sitemesh
 interface HTMLPage
          Extention of Page providing access to HTML data.
 

Methods in com.sitemesh that return Page
 Page PageParser.parse(java.io.InputStream in)
           
 Page PageParser.parse(java.io.Reader in)
           
 Page PageParser.parse(org.xml.sax.InputSource in)
           
 Page PageParser.parse(char[] data)
           
 Page PageParser.parse(byte[] data)
           
 

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

Uses of Page in com.sitemesh.filter
 

Methods in com.sitemesh.filter that return Page
 Page PageResponse.getPage()
          Send data written to PageOutputStream to PageParser and return Page instance.
 

Uses of Page in com.sitemesh.mapper
 

Methods in com.sitemesh.mapper with parameters of type Page
 Decorator DefaultDecoratorMapper.getDecorator(javax.servlet.http.HttpServletRequest request, Page page)
           
 

Uses of Page in com.sitemesh.parser
 

Classes in com.sitemesh.parser that implement Page
 class AbstractHTMLPage
          Abstract implementation of HTMLPage.
 class AbstractPage
          Abstract implementation of Page .
 class DOMPage
          Implementation of HTMLPage that populates itself from a parsed DOM document.
 class UnParsedPage
          A page that is of unrecognised content-type, or cannot be parsed into a specific type of Page.
 

Methods in com.sitemesh.parser that return Page
abstract  Page AbstractPageParser.parse(byte[] data)
          Method to be implemented by sub-classes.
 Page AbstractPageParser.parse(java.io.InputStream in)
           
 Page AbstractPageParser.parse(java.io.Reader in)
           
 Page AbstractPageParser.parse(org.xml.sax.InputSource in)
           
 Page AbstractPageParser.parse(char[] data)
           
 Page DOMPageParser.parse(byte[] data)
          Send data to DOM parser and build new DOMPage.
 

Uses of Page in com.sitemesh.taglib
 

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