001package Torello.JavaDoc;
002
003/**
004 * This may be implemented to process all Java-Doc Generated Web-Pages for an entire package. Write
005 * a handler that implements this interface, and leave it inside the following directory:
006 * 
007 * <BR /><BR /><B><CODE>
008 * ../com/MyCompany/MyPackage/upgrade-files/user-processors/UPA.java</CODE></B>
009 * 
010 * The Upgrader logic will execute your processor's handler method and pass the Java-Doc HTML File
011 * for each and every one of the CIET/Type's that are inside the Java-Package specified as
012 * {@code 'com/MyCompany/MyPackage'}
013 */
014public interface UserProcessorAll
015{
016    /**
017     * Process a complete Java-Doc Generated Web-Page
018     * @param jdhf An instance of the fully parsed HTML Page.
019     */
020    public void process(JavaDocHTMLFile jdhf);    
021}