1 19 20 package de.gulden.util.xml.serializer; 21 22 import de.gulden.util.xml.XMLException; 23 import java.util.*; 24 import org.w3c.dom.Document ; 25 import org.w3c.dom.Element ; 26 27 33 public interface XMLSerializer { 34 35 39 public Element xmlSerialize(Object object, Document document) throws XMLException; 40 41 public void xmlDeserialize(Object object, Element element) throws XMLException; 42 43 public Object xmlDeserialize(Element element) throws XMLException; 44 45 } | Popular Tags |