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