1 /*
2 * joey-gen and its relative products are published under the terms
3 * of the Apache Software License.
4 *
5 * Created on 2004/10/27 2:27:39
6 */
7 package org.asyrinx.joey.gen.command.rdb2java;
8
9 import java.util.Map;
10
11 import org.asyrinx.joey.gen.model.java.AppDomain;
12 import org.asyrinx.joey.gen.model.rdb.Databases;
13
14 /***
15 * @author takeshi
16 */
17 public interface Rdb2JavaBuilder {
18 AppDomain execute(Databases databases);
19
20 void setProperties(Map properties);
21 }