org.apache.tapestry.parse
Interface IDocumentRule

All Known Implementing Classes:
BaseDocumentRule

public interface IDocumentRule

A SpecificationDigester rule that executes at the start and end of the document.

Since:
3.0
Version:
$Id: IDocumentRule.java,v 1.2 2003/04/17 21:33:48 hlship Exp $
Author:
Howard Lewis Ship

Method Summary
 void endDocument()
           
 void finish()
           
 void setDigester(SpecificationDigester digester)
           
 void startDocument(String namespace, String name, org.xml.sax.Attributes attributes)
          Invoked at the time the first element in the document is parsed.
 

Method Detail

setDigester

public void setDigester(SpecificationDigester digester)

startDocument

public void startDocument(String namespace,
                          String name,
                          org.xml.sax.Attributes attributes)
                   throws Exception
Invoked at the time the first element in the document is parsed. By this time, the publicId will be known.

endDocument

public void endDocument()
                 throws Exception

finish

public void finish()
            throws Exception