01: package org.objectweb.celtix.tools.common;
02:
03: import org.objectweb.celtix.configuration.CommandlineConfiguration;
04:
05: /**
06: * Interface for code generators used by the tools
07: *
08: * @author codea
09: */
10: public interface Generator {
11:
12: void setConfiguration(CommandlineConfiguration config);
13:
14: void generate();
15: }
|