01: // This file is part of KeY - Integrated Deductive Software Design
02: // Copyright (C) 2001-2007 Universitaet Karlsruhe, Germany
03: // Universitaet Koblenz-Landau, Germany
04: // Chalmers University of Technology, Sweden
05: //
06: // The KeY system is protected by the GNU General Public License.
07: // See LICENSE.TXT for details.
08: package de.uka.ilkd.key.util.keydoc.html;
09:
10: import java.io.*;
11:
12: /** The abstract builder class.
13: */
14: abstract class KeYToHTMLBuilder {
15:
16: /** Every builder must be able to build the HTML representation of a key documentation.
17: @param toBuild .key file, for which the documentation should be processed
18: @return an object of the class type {@link keydoc.BoxedFile}
19: */
20: protected static BoxedFile buildHTMLFile(File toBuild) {
21: return null;
22: }
23:
24: }
|