1 /*
2 * joey-gen and its relative products are published under the terms
3 * of the Apache Software License.
4 *
5 * Created on 2004/08/14 20:56:31
6 */
7 package org.asyrinx.joey.gen.command.rdb2java;
8
9 import org.asyrinx.joey.gen.model.java.Entity;
10 import org.asyrinx.joey.gen.model.java.JavaEnumeration;
11
12 /***
13 * @author akima
14 */
15 public interface PackagingStrategy {
16
17 /***
18 * @param entity
19 */
20 void preparePackageNames(Entity entity);
21
22 /***
23 * @param enum
24 */
25 void preparePackageName(JavaEnumeration enum);
26 }