1 19 package org.netbeans.lib.jmi.mapping; 20 21 import org.netbeans.api.mdr.*; 22 import javax.jmi.reflect.RefBaseObject; 23 import java.io.*; 24 25 29 public class JMIMapperCFImpl extends JMIMapper implements Serializable { 30 31 public JMIMapperCFImpl() { 32 } 33 34 36 public void generate(JMIStreamFactory sf, RefBaseObject object) throws IOException { 37 new ClassFileMapper(sf).visitRefBaseObject(object); 38 } 39 } 40 | Popular Tags |