Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/sitemesh/parser/UnParsedPage.java


1   package com.sitemesh.parser;
2   
3   import javax.servlet.http.HttpServletRequest;
4   
5   /**
6    * A page that is of unrecognised content-type, or cannot be parsed into
7    * a specific type of Page.
8    *
9    * <p>The original page is contained within, but no meta-data or parsed chunks.</p>
10   *
11   * @author <a href="joe@truemesh.com">Joe Walnes</a>
12   * @version $Revision: 1.6 $
13   *
14   * @see com.sitemesh.Page
15   */
16  public class UnParsedPage extends AbstractPage {
17  
18    /**
19     * Simple constructor.
20     *
21     * @param original Original data of page.
22     */
23    public UnParsedPage( byte[] original ) {
24      this.pageData = original;
25    }
26  
27  }