1 package attrib4j;
2
3 import java.util.Map;
4
5 /***
6 *
7 * Different implementations of attribute compiler should implement
8 * this interface to be called by attrib4j.
9 *
10 * @author <a href="mailto:mpollack@speakeasy.net">Mark Pollack</a>
11 * @version $Revsion$ $Date: 2003/04/10 03:36:16 $
12 */
13 public interface AttributeCompiler {
14
15 /***
16 * Initialize the compiler. Configuration information is
17 * searched for under implementation specific keys in the map.
18 * @param configMap
19 * @throws AttributeException
20 */
21 void initialize(Map configMap) throws AttributeException;
22
23 /***
24 * Start the attribute compilation!
25 * @throws AttributeException
26 */
27 void compile() throws AttributeException;
28 }
This page was automatically generated by Maven