1 57 58 59 package org.enhydra.apache.xml.serialize; 60 61 62 import java.io.IOException ; 63 64 import org.w3c.dom.Document ; 65 import org.w3c.dom.DocumentFragment ; 66 import org.w3c.dom.Element ; 67 68 69 70 78 public interface DOMSerializer 79 { 80 81 82 90 public void serialize( Element elem ) 91 throws IOException ; 92 93 94 102 public void serialize( Document doc ) 103 throws IOException ; 104 105 106 114 public void serialize( DocumentFragment frag ) 115 throws IOException ; 116 117 118 } 119 120 121 122 | Popular Tags |