1 23 24 package org.objectweb.jorm.mi2xml.api; 25 26 import org.objectweb.jorm.metainfo.api.Class; 27 import org.objectweb.jorm.metainfo.api.ClassMapping; 28 import org.objectweb.jorm.metainfo.api.GenClassMapping; 29 import org.objectweb.jorm.api.PException; 30 import org.w3c.dom.Document ; 31 import org.w3c.dom.Element ; 32 33 import java.util.Map ; 34 35 39 public interface MappingDomtreeBuilder { 40 41 46 void setCurrentClass(Class currentClass); 47 48 53 void setmetaobject2idvalue(Map metaobject2idvalue); 54 55 61 abstract void processClassMapping(Document document, Element mappingElement, 62 ClassMapping classMapping) throws PException; 63 64 70 abstract void processGenClassMapping(Document document, Element mappingElement, 71 GenClassMapping genClassMapping) throws PException; 72 } 73 | Popular Tags |