1 23 24 package org.objectweb.jorm.mapper.fos.generator; 25 26 import org.objectweb.jorm.generator.api.MOPFactory; 27 import org.objectweb.jorm.generator.api.MOP; 28 import org.objectweb.jorm.compiler.api.JormCompilerParameter; 29 import org.objectweb.jorm.api.PException; 30 import org.objectweb.jorm.metainfo.api.Class; 31 32 35 public class FosMOPFactory implements MOPFactory { 36 39 public MOP createMappingMOP(JormCompilerParameter cp, String mappername) throws PException { 40 return new FosMappingMOP(); 41 } 42 43 46 public MOP createBindingMOP(JormCompilerParameter cp, String mappername) throws PException { 47 return new FosBindingMOP(); 48 } 49 } 50 | Popular Tags |