KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > tools > common > Generator


1 package org.objectweb.celtix.tools.common;
2
3 import org.objectweb.celtix.configuration.CommandlineConfiguration;
4
5 /**
6  * Interface for code generators used by the tools
7  *
8  * @author codea
9  */

10 public interface Generator {
11
12     void setConfiguration(CommandlineConfiguration config);
13     void generate();
14 }
15
16
Popular Tags