1 /* $Id: Mapping.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */ 2 package SOFA.SOFAnode.Made.CodeGen; 3 4 /** Provides information about mapping CDL types to concrete implementation language. 5 * 6 * @author Petr Hnetynka 7 */ 8 public interface Mapping { 9 10 /** Returns name of the type in the concrete implementation language. 11 * @param type cdl type (TIR object) 12 * @return string with type name or null 13 */ 14 String getImplTypeName(SOFA.SOFAnode.Made.TIR.CDLType type); 15 16 } 17