1 /* $Id: GenFile.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */2 package SOFA.SOFAnode.Made.CodeGen;3 4 /** Info about generated file.5 *6 * @author Petr Hnetynka7 */8 public class GenFile {9 /** Generated name */10 String genName;11 /** Name of the cdl entity from which the file was generated */12 String cdlName;13 /** Constructor */14 public GenFile(String gn, String cdln) {15 genName = gn;16 cdlName = cdln;17 }18 }19