1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 | package Torello.JavaDoc;
/**
* This may be implemented to process all Java-Doc Generated Web-Pages for an entire package. Write
* a handler that implements this interface, and leave it inside the following directory:
*
* <BR /><BR /><B><CODE>
* ../com/MyCompany/MyPackage/upgrade-files/user-processors/UPA.java</CODE></B>
*
* The Upgrader logic will execute your processor's handler method and pass the Java-Doc HTML File
* for each and every one of the CIET/Type's that are inside the Java-Package specified as
* {@code 'com/MyCompany/MyPackage'}
*/
public interface UserProcessorAll
{
/**
* Process a complete Java-Doc Generated Web-Page
* @param jdhf An instance of the fully parsed HTML Page.
*/
public void process(JavaDocHTMLFile jdhf);
}
|