Class AbstractHTMLPage

java.lang.Object
com.opensymphony.module.sitemesh.parser.AbstractPage
com.opensymphony.module.sitemesh.parser.AbstractHTMLPage
All Implemented Interfaces:
HTMLPage, Page
Direct Known Subclasses:
FastPage

public abstract class AbstractHTMLPage extends AbstractPage implements HTMLPage
Abstract implementation of HTMLPage.

Adds to AbstractPage some HTML methods. To implement, follow guidelines of super-class, and implement the 2 abstract methods states below.

Version:
$Revision: 1.1 $
Author:
Joe Walnes
See Also:
  • Constructor Details

    • AbstractHTMLPage

      public AbstractHTMLPage()
  • Method Details

    • writeHead

      public abstract void writeHead(Writer out) throws IOException
      Write data of html <head> tag.

      Must be implemented. Data written should not actually contain the head tags, but all the data in between.

      Specified by:
      writeHead in interface HTMLPage
      Throws:
      IOException