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:43:48 6 */ 7 package org.asyrinx.joey.gen.command.rdb2java.standard; 8 9 import org.asyrinx.joey.gen.model.java.Type; 10 import org.asyrinx.joey.gen.model.rdb.Column; 11 12 /*** 13 * @author takeshi 14 */ 15 public interface TypeMappingStrategy { 16 public Type toJavaType(Column column); 17 18 public Type toJavaType(String typeName); 19 }