// $Id: CommentHandler.java 97 2005-02-28 21:18:32Z blindsey $

package com.jclark.xsl.sax;

/** 
 * receives comment events from a parse
*/
public interface CommentHandler 
{
    /**
     * recieve notification that a comment has been encountered
     * in the parse
     */
    void comment(String contents) throws org.xml.sax.SAXException;
}
